ArrayUtils.java

1
/*
2
 * Licensed to the Apache Software Foundation (ASF) under one or more
3
 * contributor license agreements.  See the NOTICE file distributed with
4
 * this work for additional information regarding copyright ownership.
5
 * The ASF licenses this file to You under the Apache License, Version 2.0
6
 * (the "License"); you may not use this file except in compliance with
7
 * the License.  You may obtain a copy of the License at
8
 *
9
 *      http://www.apache.org/licenses/LICENSE-2.0
10
 *
11
 * Unless required by applicable law or agreed to in writing, software
12
 * distributed under the License is distributed on an "AS IS" BASIS,
13
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
 * See the License for the specific language governing permissions and
15
 * limitations under the License.
16
 */
17
package org.apache.commons.lang3;
18
19
import java.lang.reflect.Array;
20
import java.util.Arrays;
21
import java.util.BitSet;
22
import java.util.Comparator;
23
import java.util.HashMap;
24
import java.util.Map;
25
26
import org.apache.commons.lang3.builder.EqualsBuilder;
27
import org.apache.commons.lang3.builder.HashCodeBuilder;
28
import org.apache.commons.lang3.builder.ToStringBuilder;
29
import org.apache.commons.lang3.builder.ToStringStyle;
30
import org.apache.commons.lang3.math.NumberUtils;
31
import org.apache.commons.lang3.mutable.MutableInt;
32
33
/**
34
 * <p>Operations on arrays, primitive arrays (like {@code int[]}) and
35
 * primitive wrapper arrays (like {@code Integer[]}).
36
 *
37
 * <p>This class tries to handle {@code null} input gracefully.
38
 * An exception will not be thrown for a {@code null}
39
 * array input. However, an Object array that contains a {@code null}
40
 * element may throw an exception. Each method documents its behaviour.
41
 *
42
 * <p>#ThreadSafe#
43
 * @since 2.0
44
 */
45
public class ArrayUtils {
46
47
    /**
48
     * An empty immutable {@code Object} array.
49
     */
50
    public static final Object[] EMPTY_OBJECT_ARRAY = new Object[0];
51
    /**
52
     * An empty immutable {@code Class} array.
53
     */
54
    public static final Class<?>[] EMPTY_CLASS_ARRAY = new Class[0];
55
    /**
56
     * An empty immutable {@code String} array.
57
     */
58
    public static final String[] EMPTY_STRING_ARRAY = new String[0];
59
    /**
60
     * An empty immutable {@code long} array.
61
     */
62
    public static final long[] EMPTY_LONG_ARRAY = new long[0];
63
    /**
64
     * An empty immutable {@code Long} array.
65
     */
66
    public static final Long[] EMPTY_LONG_OBJECT_ARRAY = new Long[0];
67
    /**
68
     * An empty immutable {@code int} array.
69
     */
70
    public static final int[] EMPTY_INT_ARRAY = new int[0];
71
    /**
72
     * An empty immutable {@code Integer} array.
73
     */
74
    public static final Integer[] EMPTY_INTEGER_OBJECT_ARRAY = new Integer[0];
75
    /**
76
     * An empty immutable {@code short} array.
77
     */
78
    public static final short[] EMPTY_SHORT_ARRAY = new short[0];
79
    /**
80
     * An empty immutable {@code Short} array.
81
     */
82
    public static final Short[] EMPTY_SHORT_OBJECT_ARRAY = new Short[0];
83
    /**
84
     * An empty immutable {@code byte} array.
85
     */
86
    public static final byte[] EMPTY_BYTE_ARRAY = new byte[0];
87
    /**
88
     * An empty immutable {@code Byte} array.
89
     */
90
    public static final Byte[] EMPTY_BYTE_OBJECT_ARRAY = new Byte[0];
91
    /**
92
     * An empty immutable {@code double} array.
93
     */
94
    public static final double[] EMPTY_DOUBLE_ARRAY = new double[0];
95
    /**
96
     * An empty immutable {@code Double} array.
97
     */
98
    public static final Double[] EMPTY_DOUBLE_OBJECT_ARRAY = new Double[0];
99
    /**
100
     * An empty immutable {@code float} array.
101
     */
102
    public static final float[] EMPTY_FLOAT_ARRAY = new float[0];
103
    /**
104
     * An empty immutable {@code Float} array.
105
     */
106
    public static final Float[] EMPTY_FLOAT_OBJECT_ARRAY = new Float[0];
107
    /**
108
     * An empty immutable {@code boolean} array.
109
     */
110
    public static final boolean[] EMPTY_BOOLEAN_ARRAY = new boolean[0];
111
    /**
112
     * An empty immutable {@code Boolean} array.
113
     */
114
    public static final Boolean[] EMPTY_BOOLEAN_OBJECT_ARRAY = new Boolean[0];
115
    /**
116
     * An empty immutable {@code char} array.
117
     */
118
    public static final char[] EMPTY_CHAR_ARRAY = new char[0];
119
    /**
120
     * An empty immutable {@code Character} array.
121
     */
122
    public static final Character[] EMPTY_CHARACTER_OBJECT_ARRAY = new Character[0];
123
124
    /**
125
     * The index value when an element is not found in a list or array: {@code -1}.
126
     * This value is returned by methods in this class and can also be used in comparisons with values returned by
127
     * various method from {@link java.util.List}.
128
     */
129
    public static final int INDEX_NOT_FOUND = -1;
130
131
    /**
132
     * <p>ArrayUtils instances should NOT be constructed in standard programming.
133
     * Instead, the class should be used as <code>ArrayUtils.clone(new int[] {2})</code>.
134
     *
135
     * <p>This constructor is public to permit tools that require a JavaBean instance
136
     * to operate.
137
     */
138
    public ArrayUtils() {
139
      super();
140
    }
141
142
143
    // NOTE: Cannot use {@code} to enclose text which includes {}, but <code></code> is OK
144
145
146
    // Basic methods handling multi-dimensional arrays
147
    //-----------------------------------------------------------------------
148
    /**
149
     * <p>Outputs an array as a String, treating {@code null} as an empty array.
150
     *
151
     * <p>Multi-dimensional arrays are handled correctly, including
152
     * multi-dimensional primitive arrays.
153
     *
154
     * <p>The format is that of Java source code, for example <code>{a,b}</code>.
155
     *
156
     * @param array  the array to get a toString for, may be {@code null}
157
     * @return a String representation of the array, '{}' if null array input
158
     */
159
    public static String toString(final Object array) {
160 7 1. toString : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toString : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toString : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toString : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toString : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toString : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toString : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return toString(array, "{}");
161
    }
162
163
    /**
164
     * <p>Outputs an array as a String handling {@code null}s.
165
     *
166
     * <p>Multi-dimensional arrays are handled correctly, including
167
     * multi-dimensional primitive arrays.
168
     *
169
     * <p>The format is that of Java source code, for example <code>{a,b}</code>.
170
     *
171
     * @param array  the array to get a toString for, may be {@code null}
172
     * @param stringIfNull  the String to return if the array is {@code null}
173
     * @return a String representation of the array
174
     */
175
    public static String toString(final Object array, final String stringIfNull) {
176 7 1. toString : negated conditional → NOT_SCHEDULED
2. toString : negated conditional → NOT_SCHEDULED
3. toString : negated conditional → NOT_SCHEDULED
4. toString : negated conditional → NOT_SCHEDULED
5. toString : negated conditional → NOT_SCHEDULED
6. toString : negated conditional → NOT_SCHEDULED
7. toString : negated conditional → NOT_SCHEDULED
        if (array == null) {
177 7 1. toString : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toString : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toString : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toString : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toString : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toString : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toString : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return stringIfNull;
178
        }
179 7 1. toString : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toString : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toString : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toString : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toString : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toString : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toString : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return new ToStringBuilder(array, ToStringStyle.SIMPLE_STYLE).append(array).toString();
180
    }
181
182
    /**
183
     * <p>Get a hash code for an array handling multi-dimensional arrays correctly.
184
     *
185
     * <p>Multi-dimensional primitive arrays are also handled correctly by this method.
186
     *
187
     * @param array  the array to get a hash code for, {@code null} returns zero
188
     * @return a hash code for the array
189
     */
190
    public static int hashCode(final Object array) {
191 7 1. hashCode : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. hashCode : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. hashCode : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. hashCode : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. hashCode : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. hashCode : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. hashCode : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return new HashCodeBuilder().append(array).toHashCode();
192
    }
193
194
    /**
195
     * <p>Compares two arrays, using equals(), handling multi-dimensional arrays
196
     * correctly.
197
     *
198
     * <p>Multi-dimensional primitive arrays are also handled correctly by this method.
199
     *
200
     * @param array1  the left hand array to compare, may be {@code null}
201
     * @param array2  the right hand array to compare, may be {@code null}
202
     * @return {@code true} if the arrays are equal
203
     * @deprecated this method has been replaced by {@code java.util.Objects.deepEquals(Object, Object)} and will be
204
     * removed from future releases.
205
     */
206
    @Deprecated
207
    public static boolean isEquals(final Object array1, final Object array2) {
208 7 1. isEquals : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. isEquals : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isEquals : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. isEquals : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isEquals : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. isEquals : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isEquals : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return new EqualsBuilder().append(array1, array2).isEquals();
209
    }
210
211
    // To map
212
    //-----------------------------------------------------------------------
213
    /**
214
     * <p>Converts the given array into a {@link java.util.Map}. Each element of the array
215
     * must be either a {@link java.util.Map.Entry} or an Array, containing at least two
216
     * elements, where the first element is used as key and the second as
217
     * value.
218
     *
219
     * <p>This method can be used to initialize:
220
     * <pre>
221
     * // Create a Map mapping colors.
222
     * Map colorMap = ArrayUtils.toMap(new String[][] {
223
     *     {"RED", "#FF0000"},
224
     *     {"GREEN", "#00FF00"},
225
     *     {"BLUE", "#0000FF"}});
226
     * </pre>
227
     *
228
     * <p>This method returns {@code null} for a {@code null} input array.
229
     *
230
     * @param array  an array whose elements are either a {@link java.util.Map.Entry} or
231
     *  an Array containing at least two elements, may be {@code null}
232
     * @return a {@code Map} that was created from the array
233
     * @throws IllegalArgumentException  if one element of this Array is
234
     *  itself an Array containing less then two elements
235
     * @throws IllegalArgumentException  if the array contains elements other
236
     *  than {@link java.util.Map.Entry} and an Array
237
     */
238
    public static Map<Object, Object> toMap(final Object[] array) {
239 7 1. toMap : negated conditional → NOT_SCHEDULED
2. toMap : negated conditional → NOT_SCHEDULED
3. toMap : negated conditional → NOT_SCHEDULED
4. toMap : negated conditional → NOT_SCHEDULED
5. toMap : negated conditional → NOT_SCHEDULED
6. toMap : negated conditional → NOT_SCHEDULED
7. toMap : negated conditional → NOT_SCHEDULED
        if (array == null) {
240 7 1. toMap : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toMap to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toMap : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toMap to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toMap : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toMap to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toMap : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toMap to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toMap : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toMap to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toMap : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toMap to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toMap : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toMap to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
241
        }
242 7 1. toMap : Replaced double multiplication with division → NOT_SCHEDULED
2. toMap : Replaced double multiplication with division → NOT_SCHEDULED
3. toMap : Replaced double multiplication with division → NOT_SCHEDULED
4. toMap : Replaced double multiplication with division → NOT_SCHEDULED
5. toMap : Replaced double multiplication with division → NOT_SCHEDULED
6. toMap : Replaced double multiplication with division → NOT_SCHEDULED
7. toMap : Replaced double multiplication with division → NOT_SCHEDULED
        final Map<Object, Object> map = new HashMap<Object, Object>((int) (array.length * 1.5));
243 21 1. toMap : changed conditional boundary → NOT_SCHEDULED
2. toMap : Changed increment from 1 to -1 → NOT_SCHEDULED
3. toMap : negated conditional → NOT_SCHEDULED
4. toMap : changed conditional boundary → NOT_SCHEDULED
5. toMap : Changed increment from 1 to -1 → NOT_SCHEDULED
6. toMap : negated conditional → NOT_SCHEDULED
7. toMap : changed conditional boundary → NOT_SCHEDULED
8. toMap : Changed increment from 1 to -1 → NOT_SCHEDULED
9. toMap : negated conditional → NOT_SCHEDULED
10. toMap : changed conditional boundary → NOT_SCHEDULED
11. toMap : Changed increment from 1 to -1 → NOT_SCHEDULED
12. toMap : negated conditional → NOT_SCHEDULED
13. toMap : changed conditional boundary → NOT_SCHEDULED
14. toMap : Changed increment from 1 to -1 → NOT_SCHEDULED
15. toMap : negated conditional → NOT_SCHEDULED
16. toMap : changed conditional boundary → NOT_SCHEDULED
17. toMap : Changed increment from 1 to -1 → NOT_SCHEDULED
18. toMap : negated conditional → NOT_SCHEDULED
19. toMap : changed conditional boundary → NOT_SCHEDULED
20. toMap : Changed increment from 1 to -1 → NOT_SCHEDULED
21. toMap : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < array.length; i++) {
244
            final Object object = array[i];
245 7 1. toMap : negated conditional → NOT_SCHEDULED
2. toMap : negated conditional → NOT_SCHEDULED
3. toMap : negated conditional → NOT_SCHEDULED
4. toMap : negated conditional → NOT_SCHEDULED
5. toMap : negated conditional → NOT_SCHEDULED
6. toMap : negated conditional → NOT_SCHEDULED
7. toMap : negated conditional → NOT_SCHEDULED
            if (object instanceof Map.Entry<?, ?>) {
246
                final Map.Entry<?,?> entry = (Map.Entry<?,?>) object;
247
                map.put(entry.getKey(), entry.getValue());
248 7 1. toMap : negated conditional → NOT_SCHEDULED
2. toMap : negated conditional → NOT_SCHEDULED
3. toMap : negated conditional → NOT_SCHEDULED
4. toMap : negated conditional → NOT_SCHEDULED
5. toMap : negated conditional → NOT_SCHEDULED
6. toMap : negated conditional → NOT_SCHEDULED
7. toMap : negated conditional → NOT_SCHEDULED
            } else if (object instanceof Object[]) {
249
                final Object[] entry = (Object[]) object;
250 14 1. toMap : changed conditional boundary → NOT_SCHEDULED
2. toMap : negated conditional → NOT_SCHEDULED
3. toMap : changed conditional boundary → NOT_SCHEDULED
4. toMap : negated conditional → NOT_SCHEDULED
5. toMap : changed conditional boundary → NOT_SCHEDULED
6. toMap : negated conditional → NOT_SCHEDULED
7. toMap : changed conditional boundary → NOT_SCHEDULED
8. toMap : negated conditional → NOT_SCHEDULED
9. toMap : changed conditional boundary → NOT_SCHEDULED
10. toMap : negated conditional → NOT_SCHEDULED
11. toMap : negated conditional → NOT_SCHEDULED
12. toMap : negated conditional → NOT_SCHEDULED
13. toMap : changed conditional boundary → KILLED
14. toMap : changed conditional boundary → KILLED
                if (entry.length < 2) {
251
                    throw new IllegalArgumentException("Array element " + i + ", '"
252
                        + object
253
                        + "', has a length less than 2");
254
                }
255
                map.put(entry[0], entry[1]);
256
            } else {
257
                throw new IllegalArgumentException("Array element " + i + ", '"
258
                        + object
259
                        + "', is neither of type Map.Entry nor an Array");
260
            }
261
        }
262 7 1. toMap : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toMap to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toMap : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toMap to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toMap : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toMap to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toMap : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toMap to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toMap : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toMap to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toMap : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toMap to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toMap : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toMap to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return map;
263
    }
264
265
    // Generic array
266
    //-----------------------------------------------------------------------
267
    /**
268
     * <p>Create a type-safe generic array.
269
     *
270
     * <p>The Java language does not allow an array to be created from a generic type:
271
     *
272
     * <pre>
273
    public static &lt;T&gt; T[] createAnArray(int size) {
274
        return new T[size]; // compiler error here
275
    }
276
    public static &lt;T&gt; T[] createAnArray(int size) {
277
        return (T[])new Object[size]; // ClassCastException at runtime
278
    }
279
     * </pre>
280
     *
281
     * <p>Therefore new arrays of generic types can be created with this method.
282
     * For example, an array of Strings can be created:
283
     *
284
     * <pre>
285
    String[] array = ArrayUtils.toArray("1", "2");
286
    String[] emptyArray = ArrayUtils.&lt;String&gt;toArray();
287
     * </pre>
288
     *
289
     * <p>The method is typically used in scenarios, where the caller itself uses generic types
290
     * that have to be combined into an array.
291
     *
292
     * <p>Note, this method makes only sense to provide arguments of the same type so that the
293
     * compiler can deduce the type of the array itself. While it is possible to select the
294
     * type explicitly like in
295
     * <code>Number[] array = ArrayUtils.&lt;Number&gt;toArray(Integer.valueOf(42), Double.valueOf(Math.PI))</code>,
296
     * there is no real advantage when compared to
297
     * <code>new Number[] {Integer.valueOf(42), Double.valueOf(Math.PI)}</code>.
298
     *
299
     * @param  <T>   the array's element type
300
     * @param  items  the varargs array items, null allowed
301
     * @return the array, not null unless a null array is passed in
302
     * @since  3.0
303
     */
304
    public static <T> T[] toArray(final T... items) {
305 7 1. toArray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toArray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toArray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toArray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toArray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toArray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toArray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toArray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toArray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toArray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toArray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toArray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toArray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toArray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return items;
306
    }
307
308
    // Clone
309
    //-----------------------------------------------------------------------
310
    /**
311
     * <p>Shallow clones an array returning a typecast result and handling
312
     * {@code null}.
313
     *
314
     * <p>The objects in the array are not cloned, thus there is no special
315
     * handling for multi-dimensional arrays.
316
     *
317
     * <p>This method returns {@code null} for a {@code null} input array.
318
     *
319
     * @param <T> the component type of the array
320
     * @param array  the array to shallow clone, may be {@code null}
321
     * @return the cloned array, {@code null} if {@code null} input
322
     */
323
    public static <T> T[] clone(final T[] array) {
324 7 1. clone : negated conditional → NOT_SCHEDULED
2. clone : negated conditional → NOT_SCHEDULED
3. clone : negated conditional → NOT_SCHEDULED
4. clone : negated conditional → NOT_SCHEDULED
5. clone : negated conditional → NOT_SCHEDULED
6. clone : negated conditional → NOT_SCHEDULED
7. clone : negated conditional → NOT_SCHEDULED
        if (array == null) {
325 7 1. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
326
        }
327 7 1. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return array.clone();
328
    }
329
330
    /**
331
     * <p>Clones an array returning a typecast result and handling
332
     * {@code null}.
333
     *
334
     * <p>This method returns {@code null} for a {@code null} input array.
335
     *
336
     * @param array  the array to clone, may be {@code null}
337
     * @return the cloned array, {@code null} if {@code null} input
338
     */
339
    public static long[] clone(final long[] array) {
340 7 1. clone : negated conditional → NOT_SCHEDULED
2. clone : negated conditional → NOT_SCHEDULED
3. clone : negated conditional → NOT_SCHEDULED
4. clone : negated conditional → NOT_SCHEDULED
5. clone : negated conditional → NOT_SCHEDULED
6. clone : negated conditional → NOT_SCHEDULED
7. clone : negated conditional → NOT_SCHEDULED
        if (array == null) {
341 7 1. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
342
        }
343 7 1. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return array.clone();
344
    }
345
346
    /**
347
     * <p>Clones an array returning a typecast result and handling
348
     * {@code null}.
349
     *
350
     * <p>This method returns {@code null} for a {@code null} input array.
351
     *
352
     * @param array  the array to clone, may be {@code null}
353
     * @return the cloned array, {@code null} if {@code null} input
354
     */
355
    public static int[] clone(final int[] array) {
356 7 1. clone : negated conditional → NOT_SCHEDULED
2. clone : negated conditional → NOT_SCHEDULED
3. clone : negated conditional → NOT_SCHEDULED
4. clone : negated conditional → NOT_SCHEDULED
5. clone : negated conditional → NOT_SCHEDULED
6. clone : negated conditional → NOT_SCHEDULED
7. clone : negated conditional → NOT_SCHEDULED
        if (array == null) {
357 7 1. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
358
        }
359 7 1. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return array.clone();
360
    }
361
362
    /**
363
     * <p>Clones an array returning a typecast result and handling
364
     * {@code null}.
365
     *
366
     * <p>This method returns {@code null} for a {@code null} input array.
367
     *
368
     * @param array  the array to clone, may be {@code null}
369
     * @return the cloned array, {@code null} if {@code null} input
370
     */
371
    public static short[] clone(final short[] array) {
372 7 1. clone : negated conditional → NOT_SCHEDULED
2. clone : negated conditional → NOT_SCHEDULED
3. clone : negated conditional → NOT_SCHEDULED
4. clone : negated conditional → NOT_SCHEDULED
5. clone : negated conditional → NOT_SCHEDULED
6. clone : negated conditional → NOT_SCHEDULED
7. clone : negated conditional → NOT_SCHEDULED
        if (array == null) {
373 7 1. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
374
        }
375 7 1. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return array.clone();
376
    }
377
378
    /**
379
     * <p>Clones an array returning a typecast result and handling
380
     * {@code null}.
381
     *
382
     * <p>This method returns {@code null} for a {@code null} input array.
383
     *
384
     * @param array  the array to clone, may be {@code null}
385
     * @return the cloned array, {@code null} if {@code null} input
386
     */
387
    public static char[] clone(final char[] array) {
388 7 1. clone : negated conditional → NOT_SCHEDULED
2. clone : negated conditional → NOT_SCHEDULED
3. clone : negated conditional → NOT_SCHEDULED
4. clone : negated conditional → NOT_SCHEDULED
5. clone : negated conditional → NOT_SCHEDULED
6. clone : negated conditional → NOT_SCHEDULED
7. clone : negated conditional → NOT_SCHEDULED
        if (array == null) {
389 7 1. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
390
        }
391 7 1. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return array.clone();
392
    }
393
394
    /**
395
     * <p>Clones an array returning a typecast result and handling
396
     * {@code null}.
397
     *
398
     * <p>This method returns {@code null} for a {@code null} input array.
399
     *
400
     * @param array  the array to clone, may be {@code null}
401
     * @return the cloned array, {@code null} if {@code null} input
402
     */
403
    public static byte[] clone(final byte[] array) {
404 7 1. clone : negated conditional → NOT_SCHEDULED
2. clone : negated conditional → NOT_SCHEDULED
3. clone : negated conditional → NOT_SCHEDULED
4. clone : negated conditional → NOT_SCHEDULED
5. clone : negated conditional → NOT_SCHEDULED
6. clone : negated conditional → NOT_SCHEDULED
7. clone : negated conditional → NOT_SCHEDULED
        if (array == null) {
405 7 1. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
406
        }
407 7 1. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return array.clone();
408
    }
409
410
    /**
411
     * <p>Clones an array returning a typecast result and handling
412
     * {@code null}.
413
     *
414
     * <p>This method returns {@code null} for a {@code null} input array.
415
     *
416
     * @param array  the array to clone, may be {@code null}
417
     * @return the cloned array, {@code null} if {@code null} input
418
     */
419
    public static double[] clone(final double[] array) {
420 7 1. clone : negated conditional → NOT_SCHEDULED
2. clone : negated conditional → NOT_SCHEDULED
3. clone : negated conditional → NOT_SCHEDULED
4. clone : negated conditional → NOT_SCHEDULED
5. clone : negated conditional → NOT_SCHEDULED
6. clone : negated conditional → NOT_SCHEDULED
7. clone : negated conditional → NOT_SCHEDULED
        if (array == null) {
421 7 1. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
422
        }
423 7 1. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return array.clone();
424
    }
425
426
    /**
427
     * <p>Clones an array returning a typecast result and handling
428
     * {@code null}.
429
     *
430
     * <p>This method returns {@code null} for a {@code null} input array.
431
     *
432
     * @param array  the array to clone, may be {@code null}
433
     * @return the cloned array, {@code null} if {@code null} input
434
     */
435
    public static float[] clone(final float[] array) {
436 7 1. clone : negated conditional → NOT_SCHEDULED
2. clone : negated conditional → NOT_SCHEDULED
3. clone : negated conditional → NOT_SCHEDULED
4. clone : negated conditional → NOT_SCHEDULED
5. clone : negated conditional → NOT_SCHEDULED
6. clone : negated conditional → NOT_SCHEDULED
7. clone : negated conditional → NOT_SCHEDULED
        if (array == null) {
437 7 1. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
438
        }
439 7 1. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return array.clone();
440
    }
441
442
    /**
443
     * <p>Clones an array returning a typecast result and handling
444
     * {@code null}.
445
     *
446
     * <p>This method returns {@code null} for a {@code null} input array.
447
     *
448
     * @param array  the array to clone, may be {@code null}
449
     * @return the cloned array, {@code null} if {@code null} input
450
     */
451
    public static boolean[] clone(final boolean[] array) {
452 7 1. clone : negated conditional → NOT_SCHEDULED
2. clone : negated conditional → NOT_SCHEDULED
3. clone : negated conditional → NOT_SCHEDULED
4. clone : negated conditional → NOT_SCHEDULED
5. clone : negated conditional → NOT_SCHEDULED
6. clone : negated conditional → NOT_SCHEDULED
7. clone : negated conditional → NOT_SCHEDULED
        if (array == null) {
453 7 1. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
454
        }
455 7 1. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. clone : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return array.clone();
456
    }
457
458
    // nullToEmpty
459
    //-----------------------------------------------------------------------
460
    /**
461
     * <p>Defensive programming technique to change a {@code null}
462
     * reference to an empty one.
463
     *
464
     * <p>This method returns an empty array for a {@code null} input array.
465
     *
466
     * @param array  the array to check for {@code null} or empty
467
     * @param type   the class representation of the desired array
468
     * @param <T>  the class type
469
     * @return the same array, {@code public static} empty array if {@code null}
470
     * @throws IllegalArgumentException if the type argument is null
471
     * @since 3.5
472
     */
473
    public static <T> T[] nullToEmpty(final T[] array, final Class<T[]> type) {
474 7 1. nullToEmpty : negated conditional → NOT_SCHEDULED
2. nullToEmpty : negated conditional → NOT_SCHEDULED
3. nullToEmpty : negated conditional → NOT_SCHEDULED
4. nullToEmpty : negated conditional → NOT_SCHEDULED
5. nullToEmpty : negated conditional → NOT_SCHEDULED
6. nullToEmpty : negated conditional → NOT_SCHEDULED
7. nullToEmpty : negated conditional → NOT_SCHEDULED
        if (type == null) {
475
            throw new IllegalArgumentException("The type must not be null");
476
        }
477
478 7 1. nullToEmpty : negated conditional → NOT_SCHEDULED
2. nullToEmpty : negated conditional → NOT_SCHEDULED
3. nullToEmpty : negated conditional → NOT_SCHEDULED
4. nullToEmpty : negated conditional → NOT_SCHEDULED
5. nullToEmpty : negated conditional → NOT_SCHEDULED
6. nullToEmpty : negated conditional → NOT_SCHEDULED
7. nullToEmpty : negated conditional → NOT_SCHEDULED
        if (array == null) {
479 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return type.cast(Array.newInstance(type.getComponentType(), 0));
480
        }
481 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return array;
482
    }    
483
    
484
    
485
    /**
486
     * <p>Defensive programming technique to change a {@code null}
487
     * reference to an empty one.
488
     *
489
     * <p>This method returns an empty array for a {@code null} input array.
490
     *
491
     * <p>As a memory optimizing technique an empty array passed in will be overridden with
492
     * the empty {@code public static} references in this class.
493
     *
494
     * @param array  the array to check for {@code null} or empty
495
     * @return the same array, {@code public static} empty array if {@code null} or empty input
496
     * @since 2.5
497
     */
498
    public static Object[] nullToEmpty(final Object[] array) {
499 7 1. nullToEmpty : negated conditional → NOT_SCHEDULED
2. nullToEmpty : negated conditional → NOT_SCHEDULED
3. nullToEmpty : negated conditional → NOT_SCHEDULED
4. nullToEmpty : negated conditional → NOT_SCHEDULED
5. nullToEmpty : negated conditional → NOT_SCHEDULED
6. nullToEmpty : negated conditional → NOT_SCHEDULED
7. nullToEmpty : negated conditional → NOT_SCHEDULED
        if (isEmpty(array)) {
500 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_OBJECT_ARRAY;
501
        }
502 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return array;
503
    }
504
505
    /**
506
     * <p>Defensive programming technique to change a {@code null}
507
     * reference to an empty one.
508
     *
509
     * <p>This method returns an empty array for a {@code null} input array.
510
     *
511
     * <p>As a memory optimizing technique an empty array passed in will be overridden with
512
     * the empty {@code public static} references in this class.
513
     *
514
     * @param array  the array to check for {@code null} or empty
515
     * @return the same array, {@code public static} empty array if {@code null} or empty input
516
     * @since 3.2
517
     */
518
    public static Class<?>[] nullToEmpty(final Class<?>[] array) {
519 7 1. nullToEmpty : negated conditional → NOT_SCHEDULED
2. nullToEmpty : negated conditional → NOT_SCHEDULED
3. nullToEmpty : negated conditional → NOT_SCHEDULED
4. nullToEmpty : negated conditional → NOT_SCHEDULED
5. nullToEmpty : negated conditional → NOT_SCHEDULED
6. nullToEmpty : negated conditional → NOT_SCHEDULED
7. nullToEmpty : negated conditional → NOT_SCHEDULED
        if (isEmpty(array)) {
520 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_CLASS_ARRAY;
521
        }
522 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return array;
523
    }
524
525
    /**
526
     * <p>Defensive programming technique to change a {@code null}
527
     * reference to an empty one.
528
     *
529
     * <p>This method returns an empty array for a {@code null} input array.
530
     *
531
     * <p>As a memory optimizing technique an empty array passed in will be overridden with
532
     * the empty {@code public static} references in this class.
533
     *
534
     * @param array  the array to check for {@code null} or empty
535
     * @return the same array, {@code public static} empty array if {@code null} or empty input
536
     * @since 2.5
537
     */
538
    public static String[] nullToEmpty(final String[] array) {
539 7 1. nullToEmpty : negated conditional → NOT_SCHEDULED
2. nullToEmpty : negated conditional → NOT_SCHEDULED
3. nullToEmpty : negated conditional → NOT_SCHEDULED
4. nullToEmpty : negated conditional → NOT_SCHEDULED
5. nullToEmpty : negated conditional → NOT_SCHEDULED
6. nullToEmpty : negated conditional → NOT_SCHEDULED
7. nullToEmpty : negated conditional → NOT_SCHEDULED
        if (isEmpty(array)) {
540 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_STRING_ARRAY;
541
        }
542 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return array;
543
    }
544
545
    /**
546
     * <p>Defensive programming technique to change a {@code null}
547
     * reference to an empty one.
548
     *
549
     * <p>This method returns an empty array for a {@code null} input array.
550
     *
551
     * <p>As a memory optimizing technique an empty array passed in will be overridden with
552
     * the empty {@code public static} references in this class.
553
     *
554
     * @param array  the array to check for {@code null} or empty
555
     * @return the same array, {@code public static} empty array if {@code null} or empty input
556
     * @since 2.5
557
     */
558
    public static long[] nullToEmpty(final long[] array) {
559 7 1. nullToEmpty : negated conditional → NOT_SCHEDULED
2. nullToEmpty : negated conditional → NOT_SCHEDULED
3. nullToEmpty : negated conditional → NOT_SCHEDULED
4. nullToEmpty : negated conditional → NOT_SCHEDULED
5. nullToEmpty : negated conditional → NOT_SCHEDULED
6. nullToEmpty : negated conditional → NOT_SCHEDULED
7. nullToEmpty : negated conditional → NOT_SCHEDULED
        if (isEmpty(array)) {
560 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_LONG_ARRAY;
561
        }
562 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return array;
563
    }
564
565
    /**
566
     * <p>Defensive programming technique to change a {@code null}
567
     * reference to an empty one.
568
     *
569
     * <p>This method returns an empty array for a {@code null} input array.
570
     *
571
     * <p>As a memory optimizing technique an empty array passed in will be overridden with
572
     * the empty {@code public static} references in this class.
573
     *
574
     * @param array  the array to check for {@code null} or empty
575
     * @return the same array, {@code public static} empty array if {@code null} or empty input
576
     * @since 2.5
577
     */
578
    public static int[] nullToEmpty(final int[] array) {
579 7 1. nullToEmpty : negated conditional → NOT_SCHEDULED
2. nullToEmpty : negated conditional → NOT_SCHEDULED
3. nullToEmpty : negated conditional → NOT_SCHEDULED
4. nullToEmpty : negated conditional → NOT_SCHEDULED
5. nullToEmpty : negated conditional → NOT_SCHEDULED
6. nullToEmpty : negated conditional → NOT_SCHEDULED
7. nullToEmpty : negated conditional → NOT_SCHEDULED
        if (isEmpty(array)) {
580 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_INT_ARRAY;
581
        }
582 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return array;
583
    }
584
585
    /**
586
     * <p>Defensive programming technique to change a {@code null}
587
     * reference to an empty one.
588
     *
589
     * <p>This method returns an empty array for a {@code null} input array.
590
     *
591
     * <p>As a memory optimizing technique an empty array passed in will be overridden with
592
     * the empty {@code public static} references in this class.
593
     *
594
     * @param array  the array to check for {@code null} or empty
595
     * @return the same array, {@code public static} empty array if {@code null} or empty input
596
     * @since 2.5
597
     */
598
    public static short[] nullToEmpty(final short[] array) {
599 7 1. nullToEmpty : negated conditional → NOT_SCHEDULED
2. nullToEmpty : negated conditional → NOT_SCHEDULED
3. nullToEmpty : negated conditional → NOT_SCHEDULED
4. nullToEmpty : negated conditional → NOT_SCHEDULED
5. nullToEmpty : negated conditional → NOT_SCHEDULED
6. nullToEmpty : negated conditional → NOT_SCHEDULED
7. nullToEmpty : negated conditional → NOT_SCHEDULED
        if (isEmpty(array)) {
600 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_SHORT_ARRAY;
601
        }
602 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return array;
603
    }
604
605
    /**
606
     * <p>Defensive programming technique to change a {@code null}
607
     * reference to an empty one.
608
     *
609
     * <p>This method returns an empty array for a {@code null} input array.
610
     *
611
     * <p>As a memory optimizing technique an empty array passed in will be overridden with
612
     * the empty {@code public static} references in this class.
613
     *
614
     * @param array  the array to check for {@code null} or empty
615
     * @return the same array, {@code public static} empty array if {@code null} or empty input
616
     * @since 2.5
617
     */
618
    public static char[] nullToEmpty(final char[] array) {
619 7 1. nullToEmpty : negated conditional → NOT_SCHEDULED
2. nullToEmpty : negated conditional → NOT_SCHEDULED
3. nullToEmpty : negated conditional → NOT_SCHEDULED
4. nullToEmpty : negated conditional → NOT_SCHEDULED
5. nullToEmpty : negated conditional → NOT_SCHEDULED
6. nullToEmpty : negated conditional → NOT_SCHEDULED
7. nullToEmpty : negated conditional → NOT_SCHEDULED
        if (isEmpty(array)) {
620 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_CHAR_ARRAY;
621
        }
622 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return array;
623
    }
624
625
    /**
626
     * <p>Defensive programming technique to change a {@code null}
627
     * reference to an empty one.
628
     *
629
     * <p>This method returns an empty array for a {@code null} input array.
630
     *
631
     * <p>As a memory optimizing technique an empty array passed in will be overridden with
632
     * the empty {@code public static} references in this class.
633
     *
634
     * @param array  the array to check for {@code null} or empty
635
     * @return the same array, {@code public static} empty array if {@code null} or empty input
636
     * @since 2.5
637
     */
638
    public static byte[] nullToEmpty(final byte[] array) {
639 7 1. nullToEmpty : negated conditional → NOT_SCHEDULED
2. nullToEmpty : negated conditional → NOT_SCHEDULED
3. nullToEmpty : negated conditional → NOT_SCHEDULED
4. nullToEmpty : negated conditional → NOT_SCHEDULED
5. nullToEmpty : negated conditional → NOT_SCHEDULED
6. nullToEmpty : negated conditional → NOT_SCHEDULED
7. nullToEmpty : negated conditional → NOT_SCHEDULED
        if (isEmpty(array)) {
640 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_BYTE_ARRAY;
641
        }
642 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return array;
643
    }
644
645
    /**
646
     * <p>Defensive programming technique to change a {@code null}
647
     * reference to an empty one.
648
     *
649
     * <p>This method returns an empty array for a {@code null} input array.
650
     *
651
     * <p>As a memory optimizing technique an empty array passed in will be overridden with
652
     * the empty {@code public static} references in this class.
653
     *
654
     * @param array  the array to check for {@code null} or empty
655
     * @return the same array, {@code public static} empty array if {@code null} or empty input
656
     * @since 2.5
657
     */
658
    public static double[] nullToEmpty(final double[] array) {
659 7 1. nullToEmpty : negated conditional → NOT_SCHEDULED
2. nullToEmpty : negated conditional → NOT_SCHEDULED
3. nullToEmpty : negated conditional → NOT_SCHEDULED
4. nullToEmpty : negated conditional → NOT_SCHEDULED
5. nullToEmpty : negated conditional → NOT_SCHEDULED
6. nullToEmpty : negated conditional → NOT_SCHEDULED
7. nullToEmpty : negated conditional → NOT_SCHEDULED
        if (isEmpty(array)) {
660 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_DOUBLE_ARRAY;
661
        }
662 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return array;
663
    }
664
665
    /**
666
     * <p>Defensive programming technique to change a {@code null}
667
     * reference to an empty one.
668
     *
669
     * <p>This method returns an empty array for a {@code null} input array.
670
     *
671
     * <p>As a memory optimizing technique an empty array passed in will be overridden with
672
     * the empty {@code public static} references in this class.
673
     *
674
     * @param array  the array to check for {@code null} or empty
675
     * @return the same array, {@code public static} empty array if {@code null} or empty input
676
     * @since 2.5
677
     */
678
    public static float[] nullToEmpty(final float[] array) {
679 7 1. nullToEmpty : negated conditional → NOT_SCHEDULED
2. nullToEmpty : negated conditional → NOT_SCHEDULED
3. nullToEmpty : negated conditional → NOT_SCHEDULED
4. nullToEmpty : negated conditional → NOT_SCHEDULED
5. nullToEmpty : negated conditional → NOT_SCHEDULED
6. nullToEmpty : negated conditional → NOT_SCHEDULED
7. nullToEmpty : negated conditional → NOT_SCHEDULED
        if (isEmpty(array)) {
680 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_FLOAT_ARRAY;
681
        }
682 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return array;
683
    }
684
685
    /**
686
     * <p>Defensive programming technique to change a {@code null}
687
     * reference to an empty one.
688
     *
689
     * <p>This method returns an empty array for a {@code null} input array.
690
     *
691
     * <p>As a memory optimizing technique an empty array passed in will be overridden with
692
     * the empty {@code public static} references in this class.
693
     *
694
     * @param array  the array to check for {@code null} or empty
695
     * @return the same array, {@code public static} empty array if {@code null} or empty input
696
     * @since 2.5
697
     */
698
    public static boolean[] nullToEmpty(final boolean[] array) {
699 7 1. nullToEmpty : negated conditional → NOT_SCHEDULED
2. nullToEmpty : negated conditional → NOT_SCHEDULED
3. nullToEmpty : negated conditional → NOT_SCHEDULED
4. nullToEmpty : negated conditional → NOT_SCHEDULED
5. nullToEmpty : negated conditional → NOT_SCHEDULED
6. nullToEmpty : negated conditional → NOT_SCHEDULED
7. nullToEmpty : negated conditional → NOT_SCHEDULED
        if (isEmpty(array)) {
700 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_BOOLEAN_ARRAY;
701
        }
702 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return array;
703
    }
704
705
    /**
706
     * <p>Defensive programming technique to change a {@code null}
707
     * reference to an empty one.
708
     *
709
     * <p>This method returns an empty array for a {@code null} input array.
710
     *
711
     * <p>As a memory optimizing technique an empty array passed in will be overridden with
712
     * the empty {@code public static} references in this class.
713
     *
714
     * @param array  the array to check for {@code null} or empty
715
     * @return the same array, {@code public static} empty array if {@code null} or empty input
716
     * @since 2.5
717
     */
718
    public static Long[] nullToEmpty(final Long[] array) {
719 7 1. nullToEmpty : negated conditional → NOT_SCHEDULED
2. nullToEmpty : negated conditional → NOT_SCHEDULED
3. nullToEmpty : negated conditional → NOT_SCHEDULED
4. nullToEmpty : negated conditional → NOT_SCHEDULED
5. nullToEmpty : negated conditional → NOT_SCHEDULED
6. nullToEmpty : negated conditional → NOT_SCHEDULED
7. nullToEmpty : negated conditional → NOT_SCHEDULED
        if (isEmpty(array)) {
720 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_LONG_OBJECT_ARRAY;
721
        }
722 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return array;
723
    }
724
725
    /**
726
     * <p>Defensive programming technique to change a {@code null}
727
     * reference to an empty one.
728
     *
729
     * <p>This method returns an empty array for a {@code null} input array.
730
     *
731
     * <p>As a memory optimizing technique an empty array passed in will be overridden with
732
     * the empty {@code public static} references in this class.
733
     *
734
     * @param array  the array to check for {@code null} or empty
735
     * @return the same array, {@code public static} empty array if {@code null} or empty input
736
     * @since 2.5
737
     */
738
    public static Integer[] nullToEmpty(final Integer[] array) {
739 7 1. nullToEmpty : negated conditional → NOT_SCHEDULED
2. nullToEmpty : negated conditional → NOT_SCHEDULED
3. nullToEmpty : negated conditional → NOT_SCHEDULED
4. nullToEmpty : negated conditional → NOT_SCHEDULED
5. nullToEmpty : negated conditional → NOT_SCHEDULED
6. nullToEmpty : negated conditional → NOT_SCHEDULED
7. nullToEmpty : negated conditional → NOT_SCHEDULED
        if (isEmpty(array)) {
740 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_INTEGER_OBJECT_ARRAY;
741
        }
742 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return array;
743
    }
744
745
    /**
746
     * <p>Defensive programming technique to change a {@code null}
747
     * reference to an empty one.
748
     *
749
     * <p>This method returns an empty array for a {@code null} input array.
750
     *
751
     * <p>As a memory optimizing technique an empty array passed in will be overridden with
752
     * the empty {@code public static} references in this class.
753
     *
754
     * @param array  the array to check for {@code null} or empty
755
     * @return the same array, {@code public static} empty array if {@code null} or empty input
756
     * @since 2.5
757
     */
758
    public static Short[] nullToEmpty(final Short[] array) {
759 7 1. nullToEmpty : negated conditional → NOT_SCHEDULED
2. nullToEmpty : negated conditional → NOT_SCHEDULED
3. nullToEmpty : negated conditional → NOT_SCHEDULED
4. nullToEmpty : negated conditional → NOT_SCHEDULED
5. nullToEmpty : negated conditional → NOT_SCHEDULED
6. nullToEmpty : negated conditional → NOT_SCHEDULED
7. nullToEmpty : negated conditional → NOT_SCHEDULED
        if (isEmpty(array)) {
760 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_SHORT_OBJECT_ARRAY;
761
        }
762 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return array;
763
    }
764
765
    /**
766
     * <p>Defensive programming technique to change a {@code null}
767
     * reference to an empty one.
768
     *
769
     * <p>This method returns an empty array for a {@code null} input array.
770
     *
771
     * <p>As a memory optimizing technique an empty array passed in will be overridden with
772
     * the empty {@code public static} references in this class.
773
     *
774
     * @param array  the array to check for {@code null} or empty
775
     * @return the same array, {@code public static} empty array if {@code null} or empty input
776
     * @since 2.5
777
     */
778
    public static Character[] nullToEmpty(final Character[] array) {
779 7 1. nullToEmpty : negated conditional → NOT_SCHEDULED
2. nullToEmpty : negated conditional → NOT_SCHEDULED
3. nullToEmpty : negated conditional → NOT_SCHEDULED
4. nullToEmpty : negated conditional → NOT_SCHEDULED
5. nullToEmpty : negated conditional → NOT_SCHEDULED
6. nullToEmpty : negated conditional → NOT_SCHEDULED
7. nullToEmpty : negated conditional → NOT_SCHEDULED
        if (isEmpty(array)) {
780 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_CHARACTER_OBJECT_ARRAY;
781
        }
782 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return array;
783
    }
784
785
    /**
786
     * <p>Defensive programming technique to change a {@code null}
787
     * reference to an empty one.
788
     *
789
     * <p>This method returns an empty array for a {@code null} input array.
790
     *
791
     * <p>As a memory optimizing technique an empty array passed in will be overridden with
792
     * the empty {@code public static} references in this class.
793
     *
794
     * @param array  the array to check for {@code null} or empty
795
     * @return the same array, {@code public static} empty array if {@code null} or empty input
796
     * @since 2.5
797
     */
798
    public static Byte[] nullToEmpty(final Byte[] array) {
799 7 1. nullToEmpty : negated conditional → NOT_SCHEDULED
2. nullToEmpty : negated conditional → NOT_SCHEDULED
3. nullToEmpty : negated conditional → NOT_SCHEDULED
4. nullToEmpty : negated conditional → NOT_SCHEDULED
5. nullToEmpty : negated conditional → NOT_SCHEDULED
6. nullToEmpty : negated conditional → NOT_SCHEDULED
7. nullToEmpty : negated conditional → NOT_SCHEDULED
        if (isEmpty(array)) {
800 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_BYTE_OBJECT_ARRAY;
801
        }
802 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return array;
803
    }
804
805
    /**
806
     * <p>Defensive programming technique to change a {@code null}
807
     * reference to an empty one.
808
     *
809
     * <p>This method returns an empty array for a {@code null} input array.
810
     *
811
     * <p>As a memory optimizing technique an empty array passed in will be overridden with
812
     * the empty {@code public static} references in this class.
813
     *
814
     * @param array  the array to check for {@code null} or empty
815
     * @return the same array, {@code public static} empty array if {@code null} or empty input
816
     * @since 2.5
817
     */
818
    public static Double[] nullToEmpty(final Double[] array) {
819 7 1. nullToEmpty : negated conditional → NOT_SCHEDULED
2. nullToEmpty : negated conditional → NOT_SCHEDULED
3. nullToEmpty : negated conditional → NOT_SCHEDULED
4. nullToEmpty : negated conditional → NOT_SCHEDULED
5. nullToEmpty : negated conditional → NOT_SCHEDULED
6. nullToEmpty : negated conditional → NOT_SCHEDULED
7. nullToEmpty : negated conditional → NOT_SCHEDULED
        if (isEmpty(array)) {
820 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_DOUBLE_OBJECT_ARRAY;
821
        }
822 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return array;
823
    }
824
825
    /**
826
     * <p>Defensive programming technique to change a {@code null}
827
     * reference to an empty one.
828
     *
829
     * <p>This method returns an empty array for a {@code null} input array.
830
     *
831
     * <p>As a memory optimizing technique an empty array passed in will be overridden with
832
     * the empty {@code public static} references in this class.
833
     *
834
     * @param array  the array to check for {@code null} or empty
835
     * @return the same array, {@code public static} empty array if {@code null} or empty input
836
     * @since 2.5
837
     */
838
    public static Float[] nullToEmpty(final Float[] array) {
839 7 1. nullToEmpty : negated conditional → NOT_SCHEDULED
2. nullToEmpty : negated conditional → NOT_SCHEDULED
3. nullToEmpty : negated conditional → NOT_SCHEDULED
4. nullToEmpty : negated conditional → NOT_SCHEDULED
5. nullToEmpty : negated conditional → NOT_SCHEDULED
6. nullToEmpty : negated conditional → NOT_SCHEDULED
7. nullToEmpty : negated conditional → NOT_SCHEDULED
        if (isEmpty(array)) {
840 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_FLOAT_OBJECT_ARRAY;
841
        }
842 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return array;
843
    }
844
845
    /**
846
     * <p>Defensive programming technique to change a {@code null}
847
     * reference to an empty one.
848
     *
849
     * <p>This method returns an empty array for a {@code null} input array.
850
     *
851
     * <p>As a memory optimizing technique an empty array passed in will be overridden with
852
     * the empty {@code public static} references in this class.
853
     *
854
     * @param array  the array to check for {@code null} or empty
855
     * @return the same array, {@code public static} empty array if {@code null} or empty input
856
     * @since 2.5
857
     */
858
    public static Boolean[] nullToEmpty(final Boolean[] array) {
859 7 1. nullToEmpty : negated conditional → NOT_SCHEDULED
2. nullToEmpty : negated conditional → NOT_SCHEDULED
3. nullToEmpty : negated conditional → NOT_SCHEDULED
4. nullToEmpty : negated conditional → NOT_SCHEDULED
5. nullToEmpty : negated conditional → NOT_SCHEDULED
6. nullToEmpty : negated conditional → NOT_SCHEDULED
7. nullToEmpty : negated conditional → NOT_SCHEDULED
        if (isEmpty(array)) {
860 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_BOOLEAN_OBJECT_ARRAY;
861
        }
862 7 1. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. nullToEmpty : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return array;
863
    }
864
865
    // Subarrays
866
    //-----------------------------------------------------------------------
867
    /**
868
     * <p>Produces a new array containing the elements between
869
     * the start and end indices.
870
     *
871
     * <p>The start index is inclusive, the end index exclusive.
872
     * Null array input produces null output.
873
     *
874
     * <p>The component type of the subarray is always the same as
875
     * that of the input array. Thus, if the input is an array of type
876
     * {@code Date}, the following usage is envisaged:
877
     *
878
     * <pre>
879
     * Date[] someDates = (Date[])ArrayUtils.subarray(allDates, 2, 5);
880
     * </pre>
881
     *
882
     * @param <T> the component type of the array
883
     * @param array  the array
884
     * @param startIndexInclusive  the starting index. Undervalue (&lt;0)
885
     *      is promoted to 0, overvalue (&gt;array.length) results
886
     *      in an empty array.
887
     * @param endIndexExclusive  elements up to endIndex-1 are present in the
888
     *      returned subarray. Undervalue (&lt; startIndex) produces
889
     *      empty array, overvalue (&gt;array.length) is demoted to
890
     *      array length.
891
     * @return a new array containing the elements between
892
     *      the start and end indices.
893
     * @since 2.1
894
     * @see Arrays#copyOfRange(Object[], int, int)
895
     */
896
    public static <T> T[] subarray(final T[] array, int startIndexInclusive, int endIndexExclusive) {
897 7 1. subarray : negated conditional → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : negated conditional → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : negated conditional → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : negated conditional → NOT_SCHEDULED
        if (array == null) {
898 7 1. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
899
        }
900 14 1. subarray : changed conditional boundary → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : changed conditional boundary → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : changed conditional boundary → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : changed conditional boundary → NOT_SCHEDULED
8. subarray : negated conditional → NOT_SCHEDULED
9. subarray : changed conditional boundary → NOT_SCHEDULED
10. subarray : negated conditional → NOT_SCHEDULED
11. subarray : changed conditional boundary → NOT_SCHEDULED
12. subarray : negated conditional → NOT_SCHEDULED
13. subarray : changed conditional boundary → NOT_SCHEDULED
14. subarray : negated conditional → NOT_SCHEDULED
        if (startIndexInclusive < 0) {
901
            startIndexInclusive = 0;
902
        }
903 14 1. subarray : changed conditional boundary → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : changed conditional boundary → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : changed conditional boundary → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : changed conditional boundary → NOT_SCHEDULED
8. subarray : negated conditional → NOT_SCHEDULED
9. subarray : changed conditional boundary → NOT_SCHEDULED
10. subarray : negated conditional → NOT_SCHEDULED
11. subarray : changed conditional boundary → NOT_SCHEDULED
12. subarray : negated conditional → NOT_SCHEDULED
13. subarray : changed conditional boundary → NOT_SCHEDULED
14. subarray : negated conditional → NOT_SCHEDULED
        if (endIndexExclusive > array.length) {
904
            endIndexExclusive = array.length;
905
        }
906 7 1. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
2. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
3. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
4. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
5. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
6. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
7. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
        final int newSize = endIndexExclusive - startIndexInclusive;
907
        final Class<?> type = array.getClass().getComponentType();
908 14 1. subarray : changed conditional boundary → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : changed conditional boundary → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : changed conditional boundary → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : changed conditional boundary → NOT_SCHEDULED
8. subarray : negated conditional → NOT_SCHEDULED
9. subarray : changed conditional boundary → NOT_SCHEDULED
10. subarray : negated conditional → NOT_SCHEDULED
11. subarray : changed conditional boundary → NOT_SCHEDULED
12. subarray : negated conditional → NOT_SCHEDULED
13. subarray : changed conditional boundary → NOT_SCHEDULED
14. subarray : negated conditional → NOT_SCHEDULED
        if (newSize <= 0) {
909
            @SuppressWarnings("unchecked") // OK, because array is of type T
910
            final T[] emptyArray = (T[]) Array.newInstance(type, 0);
911 7 1. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return emptyArray;
912
        }
913
        @SuppressWarnings("unchecked") // OK, because array is of type T
914
        final
915
        T[] subarray = (T[]) Array.newInstance(type, newSize);
916 7 1. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
2. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
3. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
4. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
5. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
6. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
7. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
        System.arraycopy(array, startIndexInclusive, subarray, 0, newSize);
917 7 1. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return subarray;
918
    }
919
920
    /**
921
     * <p>Produces a new {@code long} array containing the elements
922
     * between the start and end indices.
923
     *
924
     * <p>The start index is inclusive, the end index exclusive.
925
     * Null array input produces null output.
926
     *
927
     * @param array  the array
928
     * @param startIndexInclusive  the starting index. Undervalue (&lt;0)
929
     *      is promoted to 0, overvalue (&gt;array.length) results
930
     *      in an empty array.
931
     * @param endIndexExclusive  elements up to endIndex-1 are present in the
932
     *      returned subarray. Undervalue (&lt; startIndex) produces
933
     *      empty array, overvalue (&gt;array.length) is demoted to
934
     *      array length.
935
     * @return a new array containing the elements between
936
     *      the start and end indices.
937
     * @since 2.1
938
     * @see Arrays#copyOfRange(long[], int, int)
939
     */
940
    public static long[] subarray(final long[] array, int startIndexInclusive, int endIndexExclusive) {
941 7 1. subarray : negated conditional → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : negated conditional → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : negated conditional → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : negated conditional → NOT_SCHEDULED
        if (array == null) {
942 7 1. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
943
        }
944 14 1. subarray : changed conditional boundary → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : changed conditional boundary → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : changed conditional boundary → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : changed conditional boundary → NOT_SCHEDULED
8. subarray : negated conditional → NOT_SCHEDULED
9. subarray : changed conditional boundary → NOT_SCHEDULED
10. subarray : negated conditional → NOT_SCHEDULED
11. subarray : changed conditional boundary → NOT_SCHEDULED
12. subarray : negated conditional → NOT_SCHEDULED
13. subarray : changed conditional boundary → NOT_SCHEDULED
14. subarray : negated conditional → NOT_SCHEDULED
        if (startIndexInclusive < 0) {
945
            startIndexInclusive = 0;
946
        }
947 14 1. subarray : changed conditional boundary → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : changed conditional boundary → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : changed conditional boundary → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : changed conditional boundary → NOT_SCHEDULED
8. subarray : negated conditional → NOT_SCHEDULED
9. subarray : changed conditional boundary → NOT_SCHEDULED
10. subarray : negated conditional → NOT_SCHEDULED
11. subarray : changed conditional boundary → NOT_SCHEDULED
12. subarray : negated conditional → NOT_SCHEDULED
13. subarray : changed conditional boundary → NOT_SCHEDULED
14. subarray : negated conditional → NOT_SCHEDULED
        if (endIndexExclusive > array.length) {
948
            endIndexExclusive = array.length;
949
        }
950 7 1. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
2. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
3. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
4. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
5. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
6. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
7. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
        final int newSize = endIndexExclusive - startIndexInclusive;
951 14 1. subarray : changed conditional boundary → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : changed conditional boundary → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : changed conditional boundary → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : changed conditional boundary → NOT_SCHEDULED
8. subarray : negated conditional → NOT_SCHEDULED
9. subarray : changed conditional boundary → NOT_SCHEDULED
10. subarray : negated conditional → NOT_SCHEDULED
11. subarray : changed conditional boundary → NOT_SCHEDULED
12. subarray : negated conditional → NOT_SCHEDULED
13. subarray : changed conditional boundary → NOT_SCHEDULED
14. subarray : negated conditional → NOT_SCHEDULED
        if (newSize <= 0) {
952 7 1. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_LONG_ARRAY;
953
        }
954
955
        final long[] subarray = new long[newSize];
956 7 1. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
2. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
3. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
4. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
5. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
6. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
7. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
        System.arraycopy(array, startIndexInclusive, subarray, 0, newSize);
957 7 1. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return subarray;
958
    }
959
960
    /**
961
     * <p>Produces a new {@code int} array containing the elements
962
     * between the start and end indices.
963
     *
964
     * <p>The start index is inclusive, the end index exclusive.
965
     * Null array input produces null output.
966
     *
967
     * @param array  the array
968
     * @param startIndexInclusive  the starting index. Undervalue (&lt;0)
969
     *      is promoted to 0, overvalue (&gt;array.length) results
970
     *      in an empty array.
971
     * @param endIndexExclusive  elements up to endIndex-1 are present in the
972
     *      returned subarray. Undervalue (&lt; startIndex) produces
973
     *      empty array, overvalue (&gt;array.length) is demoted to
974
     *      array length.
975
     * @return a new array containing the elements between
976
     *      the start and end indices.
977
     * @since 2.1
978
     * @see Arrays#copyOfRange(int[], int, int)
979
     */
980
    public static int[] subarray(final int[] array, int startIndexInclusive, int endIndexExclusive) {
981 7 1. subarray : negated conditional → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : negated conditional → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : negated conditional → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : negated conditional → NOT_SCHEDULED
        if (array == null) {
982 7 1. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
983
        }
984 14 1. subarray : changed conditional boundary → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : changed conditional boundary → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : changed conditional boundary → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : changed conditional boundary → NOT_SCHEDULED
8. subarray : negated conditional → NOT_SCHEDULED
9. subarray : changed conditional boundary → NOT_SCHEDULED
10. subarray : negated conditional → NOT_SCHEDULED
11. subarray : changed conditional boundary → NOT_SCHEDULED
12. subarray : negated conditional → NOT_SCHEDULED
13. subarray : changed conditional boundary → NOT_SCHEDULED
14. subarray : negated conditional → NOT_SCHEDULED
        if (startIndexInclusive < 0) {
985
            startIndexInclusive = 0;
986
        }
987 14 1. subarray : changed conditional boundary → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : changed conditional boundary → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : changed conditional boundary → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : changed conditional boundary → NOT_SCHEDULED
8. subarray : negated conditional → NOT_SCHEDULED
9. subarray : changed conditional boundary → NOT_SCHEDULED
10. subarray : negated conditional → NOT_SCHEDULED
11. subarray : changed conditional boundary → NOT_SCHEDULED
12. subarray : negated conditional → NOT_SCHEDULED
13. subarray : changed conditional boundary → NOT_SCHEDULED
14. subarray : negated conditional → NOT_SCHEDULED
        if (endIndexExclusive > array.length) {
988
            endIndexExclusive = array.length;
989
        }
990 7 1. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
2. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
3. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
4. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
5. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
6. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
7. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
        final int newSize = endIndexExclusive - startIndexInclusive;
991 14 1. subarray : changed conditional boundary → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : changed conditional boundary → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : changed conditional boundary → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : changed conditional boundary → NOT_SCHEDULED
8. subarray : negated conditional → NOT_SCHEDULED
9. subarray : changed conditional boundary → NOT_SCHEDULED
10. subarray : negated conditional → NOT_SCHEDULED
11. subarray : changed conditional boundary → NOT_SCHEDULED
12. subarray : negated conditional → NOT_SCHEDULED
13. subarray : changed conditional boundary → NOT_SCHEDULED
14. subarray : negated conditional → NOT_SCHEDULED
        if (newSize <= 0) {
992 7 1. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_INT_ARRAY;
993
        }
994
995
        final int[] subarray = new int[newSize];
996 7 1. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
2. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
3. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
4. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
5. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
6. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
7. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
        System.arraycopy(array, startIndexInclusive, subarray, 0, newSize);
997 7 1. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return subarray;
998
    }
999
1000
    /**
1001
     * <p>Produces a new {@code short} array containing the elements
1002
     * between the start and end indices.
1003
     *
1004
     * <p>The start index is inclusive, the end index exclusive.
1005
     * Null array input produces null output.
1006
     *
1007
     * @param array  the array
1008
     * @param startIndexInclusive  the starting index. Undervalue (&lt;0)
1009
     *      is promoted to 0, overvalue (&gt;array.length) results
1010
     *      in an empty array.
1011
     * @param endIndexExclusive  elements up to endIndex-1 are present in the
1012
     *      returned subarray. Undervalue (&lt; startIndex) produces
1013
     *      empty array, overvalue (&gt;array.length) is demoted to
1014
     *      array length.
1015
     * @return a new array containing the elements between
1016
     *      the start and end indices.
1017
     * @since 2.1
1018
     * @see Arrays#copyOfRange(short[], int, int)
1019
     */
1020
    public static short[] subarray(final short[] array, int startIndexInclusive, int endIndexExclusive) {
1021 7 1. subarray : negated conditional → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : negated conditional → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : negated conditional → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : negated conditional → NOT_SCHEDULED
        if (array == null) {
1022 7 1. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
1023
        }
1024 14 1. subarray : changed conditional boundary → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : changed conditional boundary → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : changed conditional boundary → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : changed conditional boundary → NOT_SCHEDULED
8. subarray : negated conditional → NOT_SCHEDULED
9. subarray : changed conditional boundary → NOT_SCHEDULED
10. subarray : negated conditional → NOT_SCHEDULED
11. subarray : changed conditional boundary → NOT_SCHEDULED
12. subarray : negated conditional → NOT_SCHEDULED
13. subarray : changed conditional boundary → NOT_SCHEDULED
14. subarray : negated conditional → NOT_SCHEDULED
        if (startIndexInclusive < 0) {
1025
            startIndexInclusive = 0;
1026
        }
1027 14 1. subarray : changed conditional boundary → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : changed conditional boundary → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : changed conditional boundary → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : changed conditional boundary → NOT_SCHEDULED
8. subarray : negated conditional → NOT_SCHEDULED
9. subarray : changed conditional boundary → NOT_SCHEDULED
10. subarray : negated conditional → NOT_SCHEDULED
11. subarray : changed conditional boundary → NOT_SCHEDULED
12. subarray : negated conditional → NOT_SCHEDULED
13. subarray : changed conditional boundary → NOT_SCHEDULED
14. subarray : negated conditional → NOT_SCHEDULED
        if (endIndexExclusive > array.length) {
1028
            endIndexExclusive = array.length;
1029
        }
1030 7 1. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
2. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
3. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
4. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
5. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
6. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
7. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
        final int newSize = endIndexExclusive - startIndexInclusive;
1031 14 1. subarray : changed conditional boundary → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : changed conditional boundary → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : changed conditional boundary → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : changed conditional boundary → NOT_SCHEDULED
8. subarray : negated conditional → NOT_SCHEDULED
9. subarray : changed conditional boundary → NOT_SCHEDULED
10. subarray : negated conditional → NOT_SCHEDULED
11. subarray : changed conditional boundary → NOT_SCHEDULED
12. subarray : negated conditional → NOT_SCHEDULED
13. subarray : changed conditional boundary → NOT_SCHEDULED
14. subarray : negated conditional → NOT_SCHEDULED
        if (newSize <= 0) {
1032 7 1. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_SHORT_ARRAY;
1033
        }
1034
1035
        final short[] subarray = new short[newSize];
1036 7 1. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
2. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
3. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
4. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
5. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
6. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
7. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
        System.arraycopy(array, startIndexInclusive, subarray, 0, newSize);
1037 7 1. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return subarray;
1038
    }
1039
1040
    /**
1041
     * <p>Produces a new {@code char} array containing the elements
1042
     * between the start and end indices.
1043
     *
1044
     * <p>The start index is inclusive, the end index exclusive.
1045
     * Null array input produces null output.
1046
     *
1047
     * @param array  the array
1048
     * @param startIndexInclusive  the starting index. Undervalue (&lt;0)
1049
     *      is promoted to 0, overvalue (&gt;array.length) results
1050
     *      in an empty array.
1051
     * @param endIndexExclusive  elements up to endIndex-1 are present in the
1052
     *      returned subarray. Undervalue (&lt; startIndex) produces
1053
     *      empty array, overvalue (&gt;array.length) is demoted to
1054
     *      array length.
1055
     * @return a new array containing the elements between
1056
     *      the start and end indices.
1057
     * @since 2.1
1058
     * @see Arrays#copyOfRange(char[], int, int)
1059
     */
1060
    public static char[] subarray(final char[] array, int startIndexInclusive, int endIndexExclusive) {
1061 7 1. subarray : negated conditional → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : negated conditional → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : negated conditional → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : negated conditional → NOT_SCHEDULED
        if (array == null) {
1062 7 1. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
1063
        }
1064 14 1. subarray : changed conditional boundary → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : changed conditional boundary → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : changed conditional boundary → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : changed conditional boundary → NOT_SCHEDULED
8. subarray : negated conditional → NOT_SCHEDULED
9. subarray : changed conditional boundary → NOT_SCHEDULED
10. subarray : negated conditional → NOT_SCHEDULED
11. subarray : changed conditional boundary → NOT_SCHEDULED
12. subarray : negated conditional → NOT_SCHEDULED
13. subarray : changed conditional boundary → NOT_SCHEDULED
14. subarray : negated conditional → NOT_SCHEDULED
        if (startIndexInclusive < 0) {
1065
            startIndexInclusive = 0;
1066
        }
1067 14 1. subarray : changed conditional boundary → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : changed conditional boundary → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : changed conditional boundary → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : changed conditional boundary → NOT_SCHEDULED
8. subarray : negated conditional → NOT_SCHEDULED
9. subarray : changed conditional boundary → NOT_SCHEDULED
10. subarray : negated conditional → NOT_SCHEDULED
11. subarray : changed conditional boundary → NOT_SCHEDULED
12. subarray : negated conditional → NOT_SCHEDULED
13. subarray : changed conditional boundary → NOT_SCHEDULED
14. subarray : negated conditional → NOT_SCHEDULED
        if (endIndexExclusive > array.length) {
1068
            endIndexExclusive = array.length;
1069
        }
1070 7 1. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
2. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
3. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
4. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
5. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
6. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
7. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
        final int newSize = endIndexExclusive - startIndexInclusive;
1071 14 1. subarray : changed conditional boundary → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : changed conditional boundary → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : changed conditional boundary → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : changed conditional boundary → NOT_SCHEDULED
8. subarray : negated conditional → NOT_SCHEDULED
9. subarray : changed conditional boundary → NOT_SCHEDULED
10. subarray : negated conditional → NOT_SCHEDULED
11. subarray : changed conditional boundary → NOT_SCHEDULED
12. subarray : negated conditional → NOT_SCHEDULED
13. subarray : changed conditional boundary → NOT_SCHEDULED
14. subarray : negated conditional → NOT_SCHEDULED
        if (newSize <= 0) {
1072 7 1. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_CHAR_ARRAY;
1073
        }
1074
1075
        final char[] subarray = new char[newSize];
1076 7 1. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
2. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
3. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
4. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
5. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
6. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
7. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
        System.arraycopy(array, startIndexInclusive, subarray, 0, newSize);
1077 7 1. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return subarray;
1078
    }
1079
1080
    /**
1081
     * <p>Produces a new {@code byte} array containing the elements
1082
     * between the start and end indices.
1083
     *
1084
     * <p>The start index is inclusive, the end index exclusive.
1085
     * Null array input produces null output.
1086
     *
1087
     * @param array  the array
1088
     * @param startIndexInclusive  the starting index. Undervalue (&lt;0)
1089
     *      is promoted to 0, overvalue (&gt;array.length) results
1090
     *      in an empty array.
1091
     * @param endIndexExclusive  elements up to endIndex-1 are present in the
1092
     *      returned subarray. Undervalue (&lt; startIndex) produces
1093
     *      empty array, overvalue (&gt;array.length) is demoted to
1094
     *      array length.
1095
     * @return a new array containing the elements between
1096
     *      the start and end indices.
1097
     * @since 2.1
1098
     * @see Arrays#copyOfRange(byte[], int, int)
1099
     */
1100
    public static byte[] subarray(final byte[] array, int startIndexInclusive, int endIndexExclusive) {
1101 7 1. subarray : negated conditional → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : negated conditional → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : negated conditional → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : negated conditional → NOT_SCHEDULED
        if (array == null) {
1102 7 1. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
1103
        }
1104 14 1. subarray : changed conditional boundary → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : changed conditional boundary → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : changed conditional boundary → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : changed conditional boundary → NOT_SCHEDULED
8. subarray : negated conditional → NOT_SCHEDULED
9. subarray : changed conditional boundary → NOT_SCHEDULED
10. subarray : negated conditional → NOT_SCHEDULED
11. subarray : changed conditional boundary → NOT_SCHEDULED
12. subarray : negated conditional → NOT_SCHEDULED
13. subarray : changed conditional boundary → NOT_SCHEDULED
14. subarray : negated conditional → NOT_SCHEDULED
        if (startIndexInclusive < 0) {
1105
            startIndexInclusive = 0;
1106
        }
1107 14 1. subarray : changed conditional boundary → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : changed conditional boundary → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : changed conditional boundary → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : changed conditional boundary → NOT_SCHEDULED
8. subarray : negated conditional → NOT_SCHEDULED
9. subarray : changed conditional boundary → NOT_SCHEDULED
10. subarray : negated conditional → NOT_SCHEDULED
11. subarray : changed conditional boundary → NOT_SCHEDULED
12. subarray : negated conditional → NOT_SCHEDULED
13. subarray : changed conditional boundary → NOT_SCHEDULED
14. subarray : negated conditional → NOT_SCHEDULED
        if (endIndexExclusive > array.length) {
1108
            endIndexExclusive = array.length;
1109
        }
1110 7 1. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
2. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
3. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
4. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
5. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
6. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
7. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
        final int newSize = endIndexExclusive - startIndexInclusive;
1111 14 1. subarray : changed conditional boundary → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : changed conditional boundary → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : changed conditional boundary → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : changed conditional boundary → NOT_SCHEDULED
8. subarray : negated conditional → NOT_SCHEDULED
9. subarray : changed conditional boundary → NOT_SCHEDULED
10. subarray : negated conditional → NOT_SCHEDULED
11. subarray : changed conditional boundary → NOT_SCHEDULED
12. subarray : negated conditional → NOT_SCHEDULED
13. subarray : changed conditional boundary → NOT_SCHEDULED
14. subarray : negated conditional → NOT_SCHEDULED
        if (newSize <= 0) {
1112 7 1. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_BYTE_ARRAY;
1113
        }
1114
1115
        final byte[] subarray = new byte[newSize];
1116 7 1. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
2. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
3. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
4. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
5. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
6. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
7. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
        System.arraycopy(array, startIndexInclusive, subarray, 0, newSize);
1117 7 1. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return subarray;
1118
    }
1119
1120
    /**
1121
     * <p>Produces a new {@code double} array containing the elements
1122
     * between the start and end indices.
1123
     *
1124
     * <p>The start index is inclusive, the end index exclusive.
1125
     * Null array input produces null output.
1126
     *
1127
     * @param array  the array
1128
     * @param startIndexInclusive  the starting index. Undervalue (&lt;0)
1129
     *      is promoted to 0, overvalue (&gt;array.length) results
1130
     *      in an empty array.
1131
     * @param endIndexExclusive  elements up to endIndex-1 are present in the
1132
     *      returned subarray. Undervalue (&lt; startIndex) produces
1133
     *      empty array, overvalue (&gt;array.length) is demoted to
1134
     *      array length.
1135
     * @return a new array containing the elements between
1136
     *      the start and end indices.
1137
     * @since 2.1
1138
     * @see Arrays#copyOfRange(double[], int, int)
1139
     */
1140
    public static double[] subarray(final double[] array, int startIndexInclusive, int endIndexExclusive) {
1141 7 1. subarray : negated conditional → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : negated conditional → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : negated conditional → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : negated conditional → NOT_SCHEDULED
        if (array == null) {
1142 7 1. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
1143
        }
1144 14 1. subarray : changed conditional boundary → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : changed conditional boundary → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : changed conditional boundary → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : changed conditional boundary → NOT_SCHEDULED
8. subarray : negated conditional → NOT_SCHEDULED
9. subarray : changed conditional boundary → NOT_SCHEDULED
10. subarray : negated conditional → NOT_SCHEDULED
11. subarray : changed conditional boundary → NOT_SCHEDULED
12. subarray : negated conditional → NOT_SCHEDULED
13. subarray : changed conditional boundary → NOT_SCHEDULED
14. subarray : negated conditional → NOT_SCHEDULED
        if (startIndexInclusive < 0) {
1145
            startIndexInclusive = 0;
1146
        }
1147 14 1. subarray : changed conditional boundary → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : changed conditional boundary → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : changed conditional boundary → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : changed conditional boundary → NOT_SCHEDULED
8. subarray : negated conditional → NOT_SCHEDULED
9. subarray : changed conditional boundary → NOT_SCHEDULED
10. subarray : negated conditional → NOT_SCHEDULED
11. subarray : changed conditional boundary → NOT_SCHEDULED
12. subarray : negated conditional → NOT_SCHEDULED
13. subarray : changed conditional boundary → NOT_SCHEDULED
14. subarray : negated conditional → NOT_SCHEDULED
        if (endIndexExclusive > array.length) {
1148
            endIndexExclusive = array.length;
1149
        }
1150 7 1. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
2. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
3. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
4. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
5. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
6. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
7. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
        final int newSize = endIndexExclusive - startIndexInclusive;
1151 14 1. subarray : changed conditional boundary → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : changed conditional boundary → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : changed conditional boundary → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : changed conditional boundary → NOT_SCHEDULED
8. subarray : negated conditional → NOT_SCHEDULED
9. subarray : changed conditional boundary → NOT_SCHEDULED
10. subarray : negated conditional → NOT_SCHEDULED
11. subarray : changed conditional boundary → NOT_SCHEDULED
12. subarray : negated conditional → NOT_SCHEDULED
13. subarray : changed conditional boundary → NOT_SCHEDULED
14. subarray : negated conditional → NOT_SCHEDULED
        if (newSize <= 0) {
1152 7 1. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_DOUBLE_ARRAY;
1153
        }
1154
1155
        final double[] subarray = new double[newSize];
1156 7 1. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
2. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
3. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
4. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
5. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
6. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
7. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
        System.arraycopy(array, startIndexInclusive, subarray, 0, newSize);
1157 7 1. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return subarray;
1158
    }
1159
1160
    /**
1161
     * <p>Produces a new {@code float} array containing the elements
1162
     * between the start and end indices.
1163
     *
1164
     * <p>The start index is inclusive, the end index exclusive.
1165
     * Null array input produces null output.
1166
     *
1167
     * @param array  the array
1168
     * @param startIndexInclusive  the starting index. Undervalue (&lt;0)
1169
     *      is promoted to 0, overvalue (&gt;array.length) results
1170
     *      in an empty array.
1171
     * @param endIndexExclusive  elements up to endIndex-1 are present in the
1172
     *      returned subarray. Undervalue (&lt; startIndex) produces
1173
     *      empty array, overvalue (&gt;array.length) is demoted to
1174
     *      array length.
1175
     * @return a new array containing the elements between
1176
     *      the start and end indices.
1177
     * @since 2.1
1178
     * @see Arrays#copyOfRange(float[], int, int)
1179
     */
1180
    public static float[] subarray(final float[] array, int startIndexInclusive, int endIndexExclusive) {
1181 7 1. subarray : negated conditional → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : negated conditional → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : negated conditional → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : negated conditional → NOT_SCHEDULED
        if (array == null) {
1182 7 1. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
1183
        }
1184 14 1. subarray : changed conditional boundary → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : changed conditional boundary → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : changed conditional boundary → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : changed conditional boundary → NOT_SCHEDULED
8. subarray : negated conditional → NOT_SCHEDULED
9. subarray : changed conditional boundary → SURVIVED
10. subarray : negated conditional → NOT_SCHEDULED
11. subarray : changed conditional boundary → SURVIVED
12. subarray : negated conditional → NOT_SCHEDULED
13. subarray : changed conditional boundary → SURVIVED
14. subarray : negated conditional → NOT_SCHEDULED
        if (startIndexInclusive < 0) {
1185
            startIndexInclusive = 0;
1186
        }
1187 14 1. subarray : changed conditional boundary → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : changed conditional boundary → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : changed conditional boundary → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : changed conditional boundary → NOT_SCHEDULED
8. subarray : negated conditional → NOT_SCHEDULED
9. subarray : changed conditional boundary → NOT_SCHEDULED
10. subarray : negated conditional → NOT_SCHEDULED
11. subarray : changed conditional boundary → NOT_SCHEDULED
12. subarray : negated conditional → NOT_SCHEDULED
13. subarray : changed conditional boundary → NOT_SCHEDULED
14. subarray : negated conditional → NOT_SCHEDULED
        if (endIndexExclusive > array.length) {
1188
            endIndexExclusive = array.length;
1189
        }
1190 7 1. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
2. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
3. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
4. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
5. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
6. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
7. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
        final int newSize = endIndexExclusive - startIndexInclusive;
1191 14 1. subarray : changed conditional boundary → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : changed conditional boundary → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : changed conditional boundary → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : changed conditional boundary → NOT_SCHEDULED
8. subarray : negated conditional → NOT_SCHEDULED
9. subarray : changed conditional boundary → NOT_SCHEDULED
10. subarray : negated conditional → NOT_SCHEDULED
11. subarray : changed conditional boundary → NOT_SCHEDULED
12. subarray : negated conditional → NOT_SCHEDULED
13. subarray : changed conditional boundary → NOT_SCHEDULED
14. subarray : negated conditional → NOT_SCHEDULED
        if (newSize <= 0) {
1192 7 1. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_FLOAT_ARRAY;
1193
        }
1194
1195
        final float[] subarray = new float[newSize];
1196 7 1. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
2. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
3. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
4. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
5. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
6. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
7. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
        System.arraycopy(array, startIndexInclusive, subarray, 0, newSize);
1197 7 1. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return subarray;
1198
    }
1199
1200
    /**
1201
     * <p>Produces a new {@code boolean} array containing the elements
1202
     * between the start and end indices.
1203
     *
1204
     * <p>The start index is inclusive, the end index exclusive.
1205
     * Null array input produces null output.
1206
     *
1207
     * @param array  the array
1208
     * @param startIndexInclusive  the starting index. Undervalue (&lt;0)
1209
     *      is promoted to 0, overvalue (&gt;array.length) results
1210
     *      in an empty array.
1211
     * @param endIndexExclusive  elements up to endIndex-1 are present in the
1212
     *      returned subarray. Undervalue (&lt; startIndex) produces
1213
     *      empty array, overvalue (&gt;array.length) is demoted to
1214
     *      array length.
1215
     * @return a new array containing the elements between
1216
     *      the start and end indices.
1217
     * @since 2.1
1218
     * @see Arrays#copyOfRange(boolean[], int, int)
1219
     */
1220
    public static boolean[] subarray(final boolean[] array, int startIndexInclusive, int endIndexExclusive) {
1221 7 1. subarray : negated conditional → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : negated conditional → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : negated conditional → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : negated conditional → NOT_SCHEDULED
        if (array == null) {
1222 7 1. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
1223
        }
1224 14 1. subarray : changed conditional boundary → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : changed conditional boundary → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : changed conditional boundary → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : changed conditional boundary → NOT_SCHEDULED
8. subarray : negated conditional → NOT_SCHEDULED
9. subarray : changed conditional boundary → NOT_SCHEDULED
10. subarray : negated conditional → NOT_SCHEDULED
11. subarray : changed conditional boundary → NOT_SCHEDULED
12. subarray : negated conditional → NOT_SCHEDULED
13. subarray : changed conditional boundary → NOT_SCHEDULED
14. subarray : negated conditional → NOT_SCHEDULED
        if (startIndexInclusive < 0) {
1225
            startIndexInclusive = 0;
1226
        }
1227 14 1. subarray : changed conditional boundary → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : changed conditional boundary → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : changed conditional boundary → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : changed conditional boundary → NOT_SCHEDULED
8. subarray : negated conditional → NOT_SCHEDULED
9. subarray : changed conditional boundary → NOT_SCHEDULED
10. subarray : negated conditional → NOT_SCHEDULED
11. subarray : changed conditional boundary → NOT_SCHEDULED
12. subarray : negated conditional → NOT_SCHEDULED
13. subarray : changed conditional boundary → NOT_SCHEDULED
14. subarray : negated conditional → NOT_SCHEDULED
        if (endIndexExclusive > array.length) {
1228
            endIndexExclusive = array.length;
1229
        }
1230 7 1. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
2. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
3. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
4. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
5. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
6. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
7. subarray : Replaced integer subtraction with addition → NOT_SCHEDULED
        final int newSize = endIndexExclusive - startIndexInclusive;
1231 14 1. subarray : changed conditional boundary → NOT_SCHEDULED
2. subarray : negated conditional → NOT_SCHEDULED
3. subarray : changed conditional boundary → NOT_SCHEDULED
4. subarray : negated conditional → NOT_SCHEDULED
5. subarray : changed conditional boundary → NOT_SCHEDULED
6. subarray : negated conditional → NOT_SCHEDULED
7. subarray : changed conditional boundary → NOT_SCHEDULED
8. subarray : negated conditional → NOT_SCHEDULED
9. subarray : changed conditional boundary → NOT_SCHEDULED
10. subarray : negated conditional → NOT_SCHEDULED
11. subarray : changed conditional boundary → NOT_SCHEDULED
12. subarray : negated conditional → NOT_SCHEDULED
13. subarray : changed conditional boundary → NOT_SCHEDULED
14. subarray : negated conditional → NOT_SCHEDULED
        if (newSize <= 0) {
1232 7 1. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → KILLED
4. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → KILLED
5. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → KILLED
6. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → KILLED
7. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → KILLED
            return EMPTY_BOOLEAN_ARRAY;
1233
        }
1234
1235
        final boolean[] subarray = new boolean[newSize];
1236 7 1. subarray : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
2. subarray : removed call to java/lang/System::arraycopy → KILLED
3. subarray : removed call to java/lang/System::arraycopy → KILLED
4. subarray : removed call to java/lang/System::arraycopy → KILLED
5. subarray : removed call to java/lang/System::arraycopy → KILLED
6. subarray : removed call to java/lang/System::arraycopy → KILLED
7. subarray : removed call to java/lang/System::arraycopy → KILLED
        System.arraycopy(array, startIndexInclusive, subarray, 0, newSize);
1237 7 1. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. subarray : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return subarray;
1238
    }
1239
1240
    // Is same length
1241
    //-----------------------------------------------------------------------
1242
    /**
1243
     * <p>Checks whether two arrays are the same length, treating
1244
     * {@code null} arrays as length {@code 0}.
1245
     *
1246
     * <p>Any multi-dimensional aspects of the arrays are ignored.
1247
     *
1248
     * @param array1 the first array, may be {@code null}
1249
     * @param array2 the second array, may be {@code null}
1250
     * @return {@code true} if length of arrays matches, treating
1251
     *  {@code null} as an empty array
1252
     */
1253
    public static boolean isSameLength(final Object[] array1, final Object[] array2) {
1254 14 1. isSameLength : negated conditional → NOT_SCHEDULED
2. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSameLength : negated conditional → NOT_SCHEDULED
4. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSameLength : negated conditional → NOT_SCHEDULED
6. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSameLength : negated conditional → NOT_SCHEDULED
8. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. isSameLength : negated conditional → NOT_SCHEDULED
10. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. isSameLength : negated conditional → NOT_SCHEDULED
12. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. isSameLength : negated conditional → NOT_SCHEDULED
14. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return getLength(array1) == getLength(array2);
1255
    }
1256
1257
    /**
1258
     * <p>Checks whether two arrays are the same length, treating
1259
     * {@code null} arrays as length {@code 0}.
1260
     *
1261
     * @param array1 the first array, may be {@code null}
1262
     * @param array2 the second array, may be {@code null}
1263
     * @return {@code true} if length of arrays matches, treating
1264
     *  {@code null} as an empty array
1265
     */
1266
    public static boolean isSameLength(final long[] array1, final long[] array2) {
1267 14 1. isSameLength : negated conditional → NOT_SCHEDULED
2. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSameLength : negated conditional → NOT_SCHEDULED
4. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSameLength : negated conditional → NOT_SCHEDULED
6. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSameLength : negated conditional → NOT_SCHEDULED
8. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. isSameLength : negated conditional → NOT_SCHEDULED
10. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. isSameLength : negated conditional → NOT_SCHEDULED
12. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. isSameLength : negated conditional → NOT_SCHEDULED
14. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return getLength(array1) == getLength(array2);
1268
    }
1269
1270
    /**
1271
     * <p>Checks whether two arrays are the same length, treating
1272
     * {@code null} arrays as length {@code 0}.
1273
     *
1274
     * @param array1 the first array, may be {@code null}
1275
     * @param array2 the second array, may be {@code null}
1276
     * @return {@code true} if length of arrays matches, treating
1277
     *  {@code null} as an empty array
1278
     */
1279
    public static boolean isSameLength(final int[] array1, final int[] array2) {
1280 14 1. isSameLength : negated conditional → NOT_SCHEDULED
2. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSameLength : negated conditional → NOT_SCHEDULED
4. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSameLength : negated conditional → NOT_SCHEDULED
6. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSameLength : negated conditional → NOT_SCHEDULED
8. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. isSameLength : negated conditional → NOT_SCHEDULED
10. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. isSameLength : negated conditional → NOT_SCHEDULED
12. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. isSameLength : negated conditional → NOT_SCHEDULED
14. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return getLength(array1) == getLength(array2);
1281
    }
1282
1283
    /**
1284
     * <p>Checks whether two arrays are the same length, treating
1285
     * {@code null} arrays as length {@code 0}.
1286
     *
1287
     * @param array1 the first array, may be {@code null}
1288
     * @param array2 the second array, may be {@code null}
1289
     * @return {@code true} if length of arrays matches, treating
1290
     *  {@code null} as an empty array
1291
     */
1292
    public static boolean isSameLength(final short[] array1, final short[] array2) {
1293 14 1. isSameLength : negated conditional → NOT_SCHEDULED
2. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSameLength : negated conditional → NOT_SCHEDULED
4. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSameLength : negated conditional → NOT_SCHEDULED
6. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSameLength : negated conditional → NOT_SCHEDULED
8. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. isSameLength : negated conditional → NOT_SCHEDULED
10. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. isSameLength : negated conditional → NOT_SCHEDULED
12. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. isSameLength : negated conditional → NOT_SCHEDULED
14. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return getLength(array1) == getLength(array2);
1294
    }
1295
1296
    /**
1297
     * <p>Checks whether two arrays are the same length, treating
1298
     * {@code null} arrays as length {@code 0}.
1299
     *
1300
     * @param array1 the first array, may be {@code null}
1301
     * @param array2 the second array, may be {@code null}
1302
     * @return {@code true} if length of arrays matches, treating
1303
     *  {@code null} as an empty array
1304
     */
1305
    public static boolean isSameLength(final char[] array1, final char[] array2) {
1306 14 1. isSameLength : negated conditional → NOT_SCHEDULED
2. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSameLength : negated conditional → NOT_SCHEDULED
4. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSameLength : negated conditional → NOT_SCHEDULED
6. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSameLength : negated conditional → NOT_SCHEDULED
8. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. isSameLength : negated conditional → NOT_SCHEDULED
10. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. isSameLength : negated conditional → NOT_SCHEDULED
12. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. isSameLength : negated conditional → NOT_SCHEDULED
14. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return getLength(array1) == getLength(array2);
1307
    }
1308
1309
    /**
1310
     * <p>Checks whether two arrays are the same length, treating
1311
     * {@code null} arrays as length {@code 0}.
1312
     *
1313
     * @param array1 the first array, may be {@code null}
1314
     * @param array2 the second array, may be {@code null}
1315
     * @return {@code true} if length of arrays matches, treating
1316
     *  {@code null} as an empty array
1317
     */
1318
    public static boolean isSameLength(final byte[] array1, final byte[] array2) {
1319 14 1. isSameLength : negated conditional → NOT_SCHEDULED
2. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSameLength : negated conditional → NOT_SCHEDULED
4. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSameLength : negated conditional → NOT_SCHEDULED
6. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSameLength : negated conditional → NOT_SCHEDULED
8. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. isSameLength : negated conditional → NOT_SCHEDULED
10. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. isSameLength : negated conditional → NOT_SCHEDULED
12. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. isSameLength : negated conditional → NOT_SCHEDULED
14. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return getLength(array1) == getLength(array2);
1320
    }
1321
1322
    /**
1323
     * <p>Checks whether two arrays are the same length, treating
1324
     * {@code null} arrays as length {@code 0}.
1325
     *
1326
     * @param array1 the first array, may be {@code null}
1327
     * @param array2 the second array, may be {@code null}
1328
     * @return {@code true} if length of arrays matches, treating
1329
     *  {@code null} as an empty array
1330
     */
1331
    public static boolean isSameLength(final double[] array1, final double[] array2) {
1332 14 1. isSameLength : negated conditional → NOT_SCHEDULED
2. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSameLength : negated conditional → NOT_SCHEDULED
4. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSameLength : negated conditional → NOT_SCHEDULED
6. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSameLength : negated conditional → NOT_SCHEDULED
8. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. isSameLength : negated conditional → NOT_SCHEDULED
10. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. isSameLength : negated conditional → NOT_SCHEDULED
12. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. isSameLength : negated conditional → NOT_SCHEDULED
14. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return getLength(array1) == getLength(array2);
1333
    }
1334
1335
    /**
1336
     * <p>Checks whether two arrays are the same length, treating
1337
     * {@code null} arrays as length {@code 0}.
1338
     *
1339
     * @param array1 the first array, may be {@code null}
1340
     * @param array2 the second array, may be {@code null}
1341
     * @return {@code true} if length of arrays matches, treating
1342
     *  {@code null} as an empty array
1343
     */
1344
    public static boolean isSameLength(final float[] array1, final float[] array2) {
1345 14 1. isSameLength : negated conditional → NOT_SCHEDULED
2. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSameLength : negated conditional → NOT_SCHEDULED
4. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSameLength : negated conditional → NOT_SCHEDULED
6. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSameLength : negated conditional → NOT_SCHEDULED
8. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. isSameLength : negated conditional → NOT_SCHEDULED
10. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. isSameLength : negated conditional → NOT_SCHEDULED
12. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. isSameLength : negated conditional → NOT_SCHEDULED
14. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return getLength(array1) == getLength(array2);
1346
    }
1347
1348
    /**
1349
     * <p>Checks whether two arrays are the same length, treating
1350
     * {@code null} arrays as length {@code 0}.
1351
     *
1352
     * @param array1 the first array, may be {@code null}
1353
     * @param array2 the second array, may be {@code null}
1354
     * @return {@code true} if length of arrays matches, treating
1355
     *  {@code null} as an empty array
1356
     */
1357
    public static boolean isSameLength(final boolean[] array1, final boolean[] array2) {
1358 14 1. isSameLength : negated conditional → NOT_SCHEDULED
2. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSameLength : negated conditional → NOT_SCHEDULED
4. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSameLength : negated conditional → NOT_SCHEDULED
6. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSameLength : negated conditional → NOT_SCHEDULED
8. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. isSameLength : negated conditional → NOT_SCHEDULED
10. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. isSameLength : negated conditional → NOT_SCHEDULED
12. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. isSameLength : negated conditional → NOT_SCHEDULED
14. isSameLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return getLength(array1) == getLength(array2);
1359
    }
1360
1361
    //-----------------------------------------------------------------------
1362
    /**
1363
     * <p>Returns the length of the specified array.
1364
     * This method can deal with {@code Object} arrays and with primitive arrays.
1365
     *
1366
     * <p>If the input array is {@code null}, {@code 0} is returned.
1367
     *
1368
     * <pre>
1369
     * ArrayUtils.getLength(null)            = 0
1370
     * ArrayUtils.getLength([])              = 0
1371
     * ArrayUtils.getLength([null])          = 1
1372
     * ArrayUtils.getLength([true, false])   = 2
1373
     * ArrayUtils.getLength([1, 2, 3])       = 3
1374
     * ArrayUtils.getLength(["a", "b", "c"]) = 3
1375
     * </pre>
1376
     *
1377
     * @param array  the array to retrieve the length from, may be null
1378
     * @return The length of the array, or {@code 0} if the array is {@code null}
1379
     * @throws IllegalArgumentException if the object argument is not an array.
1380
     * @since 2.1
1381
     */
1382
    public static int getLength(final Object array) {
1383 7 1. getLength : negated conditional → NOT_SCHEDULED
2. getLength : negated conditional → NOT_SCHEDULED
3. getLength : negated conditional → NOT_SCHEDULED
4. getLength : negated conditional → NOT_SCHEDULED
5. getLength : negated conditional → NOT_SCHEDULED
6. getLength : negated conditional → NOT_SCHEDULED
7. getLength : negated conditional → NOT_SCHEDULED
        if (array == null) {
1384 7 1. getLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. getLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. getLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. getLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. getLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. getLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. getLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return 0;
1385
        }
1386 7 1. getLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. getLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. getLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. getLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. getLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. getLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. getLength : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return Array.getLength(array);
1387
    }
1388
1389
    /**
1390
     * <p>Checks whether two arrays are the same type taking into account
1391
     * multi-dimensional arrays.
1392
     *
1393
     * @param array1 the first array, must not be {@code null}
1394
     * @param array2 the second array, must not be {@code null}
1395
     * @return {@code true} if type of arrays matches
1396
     * @throws IllegalArgumentException if either array is {@code null}
1397
     */
1398
    public static boolean isSameType(final Object array1, final Object array2) {
1399 14 1. isSameType : negated conditional → NOT_SCHEDULED
2. isSameType : negated conditional → NOT_SCHEDULED
3. isSameType : negated conditional → NOT_SCHEDULED
4. isSameType : negated conditional → NOT_SCHEDULED
5. isSameType : negated conditional → NOT_SCHEDULED
6. isSameType : negated conditional → NOT_SCHEDULED
7. isSameType : negated conditional → NOT_SCHEDULED
8. isSameType : negated conditional → NOT_SCHEDULED
9. isSameType : negated conditional → NOT_SCHEDULED
10. isSameType : negated conditional → NOT_SCHEDULED
11. isSameType : negated conditional → NOT_SCHEDULED
12. isSameType : negated conditional → NOT_SCHEDULED
13. isSameType : negated conditional → NOT_SCHEDULED
14. isSameType : negated conditional → NOT_SCHEDULED
        if (array1 == null || array2 == null) {
1400
            throw new IllegalArgumentException("The Array must not be null");
1401
        }
1402 7 1. isSameType : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. isSameType : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSameType : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. isSameType : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSameType : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. isSameType : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSameType : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return array1.getClass().getName().equals(array2.getClass().getName());
1403
    }
1404
1405
    // Reverse
1406
    //-----------------------------------------------------------------------
1407
    /**
1408
     * <p>Reverses the order of the given array.
1409
     *
1410
     * <p>There is no special handling for multi-dimensional arrays.
1411
     *
1412
     * <p>This method does nothing for a {@code null} input array.
1413
     *
1414
     * @param array  the array to reverse, may be {@code null}
1415
     */
1416
    public static void reverse(final Object[] array) {
1417 7 1. reverse : negated conditional → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : negated conditional → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : negated conditional → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : negated conditional → NOT_SCHEDULED
        if (array == null) {
1418
            return;
1419
        }
1420 7 1. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
2. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
3. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
4. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
5. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
6. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
7. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
        reverse(array, 0, array.length);
1421
    }
1422
1423
    /**
1424
     * <p>Reverses the order of the given array.
1425
     *
1426
     * <p>This method does nothing for a {@code null} input array.
1427
     *
1428
     * @param array  the array to reverse, may be {@code null}
1429
     */
1430
    public static void reverse(final long[] array) {
1431 7 1. reverse : negated conditional → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : negated conditional → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : negated conditional → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : negated conditional → NOT_SCHEDULED
        if (array == null) {
1432
            return;
1433
        }
1434 7 1. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
2. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
3. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
4. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
5. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
6. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
7. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
        reverse(array, 0, array.length);
1435
    }
1436
1437
    /**
1438
     * <p>Reverses the order of the given array.
1439
     *
1440
     * <p>This method does nothing for a {@code null} input array.
1441
     *
1442
     * @param array  the array to reverse, may be {@code null}
1443
     */
1444
    public static void reverse(final int[] array) {
1445 7 1. reverse : negated conditional → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : negated conditional → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : negated conditional → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : negated conditional → NOT_SCHEDULED
        if (array == null) {
1446
            return;
1447
        }
1448 7 1. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
2. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
3. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
4. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
5. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
6. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
7. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
        reverse(array, 0, array.length);
1449
    }
1450
1451
    /**
1452
     * <p>Reverses the order of the given array.
1453
     *
1454
     * <p>This method does nothing for a {@code null} input array.
1455
     *
1456
     * @param array  the array to reverse, may be {@code null}
1457
     */
1458
    public static void reverse(final short[] array) {
1459 7 1. reverse : negated conditional → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : negated conditional → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : negated conditional → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : negated conditional → NOT_SCHEDULED
        if (array == null) {
1460
            return;
1461
        }
1462 7 1. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
2. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
3. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
4. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
5. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
6. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
7. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
        reverse(array, 0, array.length);
1463
    }
1464
1465
    /**
1466
     * <p>Reverses the order of the given array.
1467
     *
1468
     * <p>This method does nothing for a {@code null} input array.
1469
     *
1470
     * @param array  the array to reverse, may be {@code null}
1471
     */
1472
    public static void reverse(final char[] array) {
1473 7 1. reverse : negated conditional → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : negated conditional → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : negated conditional → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : negated conditional → NOT_SCHEDULED
        if (array == null) {
1474
            return;
1475
        }
1476 7 1. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → KILLED
2. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → KILLED
3. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → KILLED
4. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → KILLED
5. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → KILLED
6. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → KILLED
7. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → KILLED
        reverse(array, 0, array.length);
1477
    }
1478
1479
    /**
1480
     * <p>Reverses the order of the given array.
1481
     *
1482
     * <p>This method does nothing for a {@code null} input array.
1483
     *
1484
     * @param array  the array to reverse, may be {@code null}
1485
     */
1486
    public static void reverse(final byte[] array) {
1487 7 1. reverse : negated conditional → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : negated conditional → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : negated conditional → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : negated conditional → NOT_SCHEDULED
        if (array == null) {
1488
            return;
1489
        }
1490 7 1. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
2. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
3. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
4. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
5. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
6. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
7. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
        reverse(array, 0, array.length);
1491
    }
1492
1493
    /**
1494
     * <p>Reverses the order of the given array.
1495
     *
1496
     * <p>This method does nothing for a {@code null} input array.
1497
     *
1498
     * @param array  the array to reverse, may be {@code null}
1499
     */
1500
    public static void reverse(final double[] array) {
1501 7 1. reverse : negated conditional → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : negated conditional → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : negated conditional → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : negated conditional → NOT_SCHEDULED
        if (array == null) {
1502
            return;
1503
        }
1504 7 1. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
2. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
3. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
4. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
5. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
6. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
7. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
        reverse(array, 0, array.length);
1505
    }
1506
1507
    /**
1508
     * <p>Reverses the order of the given array.
1509
     *
1510
     * <p>This method does nothing for a {@code null} input array.
1511
     *
1512
     * @param array  the array to reverse, may be {@code null}
1513
     */
1514
    public static void reverse(final float[] array) {
1515 7 1. reverse : negated conditional → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : negated conditional → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : negated conditional → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : negated conditional → NOT_SCHEDULED
        if (array == null) {
1516
            return;
1517
        }
1518 7 1. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
2. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
3. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
4. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
5. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
6. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
7. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
        reverse(array, 0, array.length);
1519
    }
1520
1521
    /**
1522
     * <p>Reverses the order of the given array.
1523
     *
1524
     * <p>This method does nothing for a {@code null} input array.
1525
     *
1526
     * @param array  the array to reverse, may be {@code null}
1527
     */
1528
    public static void reverse(final boolean[] array) {
1529 7 1. reverse : negated conditional → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : negated conditional → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : negated conditional → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : negated conditional → NOT_SCHEDULED
        if (array == null) {
1530
            return;
1531
        }
1532 7 1. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
2. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
3. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
4. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
5. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
6. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
7. reverse : removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED
        reverse(array, 0, array.length);
1533
    }
1534
1535
    /**
1536
     * <p>
1537
     * Reverses the order of the given array in the given range.
1538
     * 
1539
     * <p>
1540
     * This method does nothing for a {@code null} input array.
1541
     * 
1542
     * @param array
1543
     *            the array to reverse, may be {@code null}
1544
     * @param startIndexInclusive
1545
     *            the starting index. Undervalue (&lt;0) is promoted to 0, overvalue (&gt;array.length) results in no
1546
     *            change.
1547
     * @param endIndexExclusive
1548
     *            elements up to endIndex-1 are reversed in the array. Undervalue (&lt; start index) results in no
1549
     *            change. Overvalue (&gt;array.length) is demoted to array length.
1550
     * @since 3.2
1551
     */
1552
    public static void reverse(final boolean[] array, final int startIndexInclusive, final int endIndexExclusive) {
1553 7 1. reverse : negated conditional → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : negated conditional → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : negated conditional → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : negated conditional → NOT_SCHEDULED
        if (array == null) {
1554
            return;
1555
        }
1556 14 1. reverse : changed conditional boundary → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : changed conditional boundary → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : changed conditional boundary → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : changed conditional boundary → NOT_SCHEDULED
8. reverse : negated conditional → NOT_SCHEDULED
9. reverse : changed conditional boundary → NOT_SCHEDULED
10. reverse : negated conditional → NOT_SCHEDULED
11. reverse : changed conditional boundary → NOT_SCHEDULED
12. reverse : negated conditional → NOT_SCHEDULED
13. reverse : changed conditional boundary → NOT_SCHEDULED
14. reverse : negated conditional → NOT_SCHEDULED
        int i = startIndexInclusive < 0 ? 0 : startIndexInclusive;
1557 7 1. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
2. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
3. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
4. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
5. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
6. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
7. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
        int j = Math.min(array.length, endIndexExclusive) - 1;
1558
        boolean tmp;
1559 14 1. reverse : changed conditional boundary → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : changed conditional boundary → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : changed conditional boundary → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : changed conditional boundary → NOT_SCHEDULED
8. reverse : negated conditional → NOT_SCHEDULED
9. reverse : changed conditional boundary → NOT_SCHEDULED
10. reverse : negated conditional → NOT_SCHEDULED
11. reverse : changed conditional boundary → NOT_SCHEDULED
12. reverse : negated conditional → NOT_SCHEDULED
13. reverse : changed conditional boundary → NOT_SCHEDULED
14. reverse : negated conditional → NOT_SCHEDULED
        while (j > i) {
1560
            tmp = array[j];
1561
            array[j] = array[i];
1562
            array[i] = tmp;
1563 7 1. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
2. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
3. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
4. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
5. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
6. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
7. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
            j--;
1564 7 1. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
2. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
3. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
4. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
5. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
6. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
7. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
            i++;
1565
        }
1566
    }
1567
1568
    /**
1569
     * <p>
1570
     * Reverses the order of the given array in the given range.
1571
     * 
1572
     * <p>
1573
     * This method does nothing for a {@code null} input array.
1574
     * 
1575
     * @param array
1576
     *            the array to reverse, may be {@code null}
1577
     * @param startIndexInclusive
1578
     *            the starting index. Undervalue (&lt;0) is promoted to 0, overvalue (&gt;array.length) results in no
1579
     *            change.
1580
     * @param endIndexExclusive
1581
     *            elements up to endIndex-1 are reversed in the array. Undervalue (&lt; start index) results in no
1582
     *            change. Overvalue (&gt;array.length) is demoted to array length.
1583
     * @since 3.2
1584
     */
1585
    public static void reverse(final byte[] array, final int startIndexInclusive, final int endIndexExclusive) {
1586 7 1. reverse : negated conditional → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : negated conditional → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : negated conditional → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : negated conditional → NOT_SCHEDULED
        if (array == null) {
1587
            return;
1588
        }
1589 14 1. reverse : changed conditional boundary → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : changed conditional boundary → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : changed conditional boundary → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : changed conditional boundary → NOT_SCHEDULED
8. reverse : negated conditional → NOT_SCHEDULED
9. reverse : changed conditional boundary → NOT_SCHEDULED
10. reverse : negated conditional → NOT_SCHEDULED
11. reverse : changed conditional boundary → NOT_SCHEDULED
12. reverse : negated conditional → NOT_SCHEDULED
13. reverse : changed conditional boundary → NOT_SCHEDULED
14. reverse : negated conditional → NOT_SCHEDULED
        int i = startIndexInclusive < 0 ? 0 : startIndexInclusive;
1590 7 1. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
2. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
3. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
4. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
5. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
6. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
7. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
        int j = Math.min(array.length, endIndexExclusive) - 1;
1591
        byte tmp;
1592 14 1. reverse : changed conditional boundary → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : changed conditional boundary → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : changed conditional boundary → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : changed conditional boundary → NOT_SCHEDULED
8. reverse : negated conditional → NOT_SCHEDULED
9. reverse : changed conditional boundary → NOT_SCHEDULED
10. reverse : negated conditional → NOT_SCHEDULED
11. reverse : changed conditional boundary → NOT_SCHEDULED
12. reverse : negated conditional → NOT_SCHEDULED
13. reverse : changed conditional boundary → NOT_SCHEDULED
14. reverse : negated conditional → NOT_SCHEDULED
        while (j > i) {
1593
            tmp = array[j];
1594
            array[j] = array[i];
1595
            array[i] = tmp;
1596 7 1. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
2. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
3. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
4. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
5. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
6. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
7. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
            j--;
1597 7 1. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
2. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
3. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
4. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
5. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
6. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
7. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
            i++;
1598
        }
1599
    }
1600
1601
    /**
1602
     * <p>
1603
     * Reverses the order of the given array in the given range.
1604
     * 
1605
     * <p>
1606
     * This method does nothing for a {@code null} input array.
1607
     * 
1608
     * @param array
1609
     *            the array to reverse, may be {@code null}
1610
     * @param startIndexInclusive
1611
     *            the starting index. Undervalue (&lt;0) is promoted to 0, overvalue (&gt;array.length) results in no
1612
     *            change.
1613
     * @param endIndexExclusive
1614
     *            elements up to endIndex-1 are reversed in the array. Undervalue (&lt; start index) results in no
1615
     *            change. Overvalue (&gt;array.length) is demoted to array length.
1616
     * @since 3.2
1617
     */
1618
    public static void reverse(final char[] array, final int startIndexInclusive, final int endIndexExclusive) {
1619 7 1. reverse : negated conditional → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : negated conditional → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : negated conditional → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : negated conditional → NOT_SCHEDULED
        if (array == null) {
1620
            return;
1621
        }
1622 14 1. reverse : changed conditional boundary → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : changed conditional boundary → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : changed conditional boundary → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : changed conditional boundary → NOT_SCHEDULED
8. reverse : negated conditional → NOT_SCHEDULED
9. reverse : changed conditional boundary → NOT_SCHEDULED
10. reverse : negated conditional → NOT_SCHEDULED
11. reverse : changed conditional boundary → NOT_SCHEDULED
12. reverse : negated conditional → NOT_SCHEDULED
13. reverse : changed conditional boundary → NOT_SCHEDULED
14. reverse : negated conditional → NOT_SCHEDULED
        int i = startIndexInclusive < 0 ? 0 : startIndexInclusive;
1623 7 1. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
2. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
3. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
4. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
5. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
6. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
7. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
        int j = Math.min(array.length, endIndexExclusive) - 1;
1624
        char tmp;
1625 14 1. reverse : changed conditional boundary → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : changed conditional boundary → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : changed conditional boundary → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : changed conditional boundary → NOT_SCHEDULED
8. reverse : negated conditional → NOT_SCHEDULED
9. reverse : changed conditional boundary → NOT_SCHEDULED
10. reverse : negated conditional → NOT_SCHEDULED
11. reverse : changed conditional boundary → NOT_SCHEDULED
12. reverse : negated conditional → NOT_SCHEDULED
13. reverse : changed conditional boundary → NOT_SCHEDULED
14. reverse : negated conditional → NOT_SCHEDULED
        while (j > i) {
1626
            tmp = array[j];
1627
            array[j] = array[i];
1628
            array[i] = tmp;
1629 7 1. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
2. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
3. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
4. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
5. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
6. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
7. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
            j--;
1630 7 1. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
2. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
3. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
4. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
5. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
6. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
7. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
            i++;
1631
        }
1632
    }
1633
1634
    /**
1635
     * <p>
1636
     * Reverses the order of the given array in the given range.
1637
     * 
1638
     * <p>
1639
     * This method does nothing for a {@code null} input array.
1640
     * 
1641
     * @param array
1642
     *            the array to reverse, may be {@code null}
1643
     * @param startIndexInclusive
1644
     *            the starting index. Undervalue (&lt;0) is promoted to 0, overvalue (&gt;array.length) results in no
1645
     *            change.
1646
     * @param endIndexExclusive
1647
     *            elements up to endIndex-1 are reversed in the array. Undervalue (&lt; start index) results in no
1648
     *            change. Overvalue (&gt;array.length) is demoted to array length.
1649
     * @since 3.2
1650
     */
1651
    public static void reverse(final double[] array, final int startIndexInclusive, final int endIndexExclusive) {
1652 7 1. reverse : negated conditional → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : negated conditional → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : negated conditional → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : negated conditional → NOT_SCHEDULED
        if (array == null) {
1653
            return;
1654
        }
1655 14 1. reverse : changed conditional boundary → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : changed conditional boundary → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : changed conditional boundary → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : changed conditional boundary → NOT_SCHEDULED
8. reverse : negated conditional → NOT_SCHEDULED
9. reverse : changed conditional boundary → NOT_SCHEDULED
10. reverse : negated conditional → NOT_SCHEDULED
11. reverse : changed conditional boundary → NOT_SCHEDULED
12. reverse : negated conditional → NOT_SCHEDULED
13. reverse : changed conditional boundary → NOT_SCHEDULED
14. reverse : negated conditional → NOT_SCHEDULED
        int i = startIndexInclusive < 0 ? 0 : startIndexInclusive;
1656 7 1. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
2. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
3. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
4. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
5. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
6. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
7. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
        int j = Math.min(array.length, endIndexExclusive) - 1;
1657
        double tmp;
1658 14 1. reverse : changed conditional boundary → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : changed conditional boundary → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : changed conditional boundary → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : changed conditional boundary → NOT_SCHEDULED
8. reverse : negated conditional → NOT_SCHEDULED
9. reverse : changed conditional boundary → NOT_SCHEDULED
10. reverse : negated conditional → NOT_SCHEDULED
11. reverse : changed conditional boundary → NOT_SCHEDULED
12. reverse : negated conditional → NOT_SCHEDULED
13. reverse : changed conditional boundary → NOT_SCHEDULED
14. reverse : negated conditional → NOT_SCHEDULED
        while (j > i) {
1659
            tmp = array[j];
1660
            array[j] = array[i];
1661
            array[i] = tmp;
1662 7 1. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
2. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
3. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
4. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
5. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
6. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
7. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
            j--;
1663 7 1. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
2. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
3. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
4. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
5. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
6. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
7. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
            i++;
1664
        }
1665
    }
1666
1667
    /**
1668
     * <p>
1669
     * Reverses the order of the given array in the given range.
1670
     * 
1671
     * <p>
1672
     * This method does nothing for a {@code null} input array.
1673
     * 
1674
     * @param array
1675
     *            the array to reverse, may be {@code null}
1676
     * @param startIndexInclusive
1677
     *            the starting index. Undervalue (&lt;0) is promoted to 0, overvalue (&gt;array.length) results in no
1678
     *            change.
1679
     * @param endIndexExclusive
1680
     *            elements up to endIndex-1 are reversed in the array. Undervalue (&lt; start index) results in no
1681
     *            change. Overvalue (&gt;array.length) is demoted to array length.
1682
     * @since 3.2
1683
     */
1684
    public static void reverse(final float[] array, final int startIndexInclusive, final int endIndexExclusive) {
1685 7 1. reverse : negated conditional → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : negated conditional → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : negated conditional → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : negated conditional → NOT_SCHEDULED
        if (array == null) {
1686
            return;
1687
        }
1688 14 1. reverse : changed conditional boundary → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : changed conditional boundary → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : changed conditional boundary → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : changed conditional boundary → NOT_SCHEDULED
8. reverse : negated conditional → NOT_SCHEDULED
9. reverse : changed conditional boundary → NOT_SCHEDULED
10. reverse : negated conditional → NOT_SCHEDULED
11. reverse : changed conditional boundary → NOT_SCHEDULED
12. reverse : negated conditional → NOT_SCHEDULED
13. reverse : changed conditional boundary → NOT_SCHEDULED
14. reverse : negated conditional → NOT_SCHEDULED
        int i = startIndexInclusive < 0 ? 0 : startIndexInclusive;
1689 7 1. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
2. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
3. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
4. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
5. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
6. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
7. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
        int j = Math.min(array.length, endIndexExclusive) - 1;
1690
        float tmp;
1691 14 1. reverse : changed conditional boundary → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : changed conditional boundary → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : changed conditional boundary → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : changed conditional boundary → NOT_SCHEDULED
8. reverse : negated conditional → NOT_SCHEDULED
9. reverse : changed conditional boundary → NOT_SCHEDULED
10. reverse : negated conditional → NOT_SCHEDULED
11. reverse : changed conditional boundary → NOT_SCHEDULED
12. reverse : negated conditional → NOT_SCHEDULED
13. reverse : changed conditional boundary → NOT_SCHEDULED
14. reverse : negated conditional → NOT_SCHEDULED
        while (j > i) {
1692
            tmp = array[j];
1693
            array[j] = array[i];
1694
            array[i] = tmp;
1695 7 1. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
2. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
3. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
4. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
5. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
6. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
7. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
            j--;
1696 7 1. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
2. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
3. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
4. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
5. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
6. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
7. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
            i++;
1697
        }
1698
    }
1699
1700
    /**
1701
     * <p>
1702
     * Reverses the order of the given array in the given range.
1703
     * 
1704
     * <p>
1705
     * This method does nothing for a {@code null} input array.
1706
     * 
1707
     * @param array
1708
     *            the array to reverse, may be {@code null}
1709
     * @param startIndexInclusive
1710
     *            the starting index. Undervalue (&lt;0) is promoted to 0, overvalue (&gt;array.length) results in no
1711
     *            change.
1712
     * @param endIndexExclusive
1713
     *            elements up to endIndex-1 are reversed in the array. Undervalue (&lt; start index) results in no
1714
     *            change. Overvalue (&gt;array.length) is demoted to array length.
1715
     * @since 3.2
1716
     */
1717
    public static void reverse(final int[] array, final int startIndexInclusive, final int endIndexExclusive) {
1718 7 1. reverse : negated conditional → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : negated conditional → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : negated conditional → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : negated conditional → NOT_SCHEDULED
        if (array == null) {
1719
            return;
1720
        }
1721 14 1. reverse : changed conditional boundary → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : changed conditional boundary → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : changed conditional boundary → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : changed conditional boundary → NOT_SCHEDULED
8. reverse : negated conditional → NOT_SCHEDULED
9. reverse : changed conditional boundary → NOT_SCHEDULED
10. reverse : negated conditional → NOT_SCHEDULED
11. reverse : changed conditional boundary → NOT_SCHEDULED
12. reverse : negated conditional → NOT_SCHEDULED
13. reverse : changed conditional boundary → NOT_SCHEDULED
14. reverse : negated conditional → NOT_SCHEDULED
        int i = startIndexInclusive < 0 ? 0 : startIndexInclusive;
1722 7 1. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
2. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
3. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
4. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
5. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
6. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
7. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
        int j = Math.min(array.length, endIndexExclusive) - 1;
1723
        int tmp;
1724 14 1. reverse : changed conditional boundary → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : changed conditional boundary → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : changed conditional boundary → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : changed conditional boundary → NOT_SCHEDULED
8. reverse : negated conditional → NOT_SCHEDULED
9. reverse : changed conditional boundary → NOT_SCHEDULED
10. reverse : negated conditional → NOT_SCHEDULED
11. reverse : changed conditional boundary → NOT_SCHEDULED
12. reverse : negated conditional → NOT_SCHEDULED
13. reverse : changed conditional boundary → NOT_SCHEDULED
14. reverse : negated conditional → NOT_SCHEDULED
        while (j > i) {
1725
            tmp = array[j];
1726
            array[j] = array[i];
1727
            array[i] = tmp;
1728 7 1. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
2. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
3. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
4. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
5. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
6. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
7. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
            j--;
1729 7 1. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
2. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
3. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
4. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
5. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
6. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
7. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
            i++;
1730
        }
1731
    }
1732
1733
    /**
1734
     * <p>
1735
     * Reverses the order of the given array in the given range.
1736
     * 
1737
     * <p>
1738
     * This method does nothing for a {@code null} input array.
1739
     * 
1740
     * @param array
1741
     *            the array to reverse, may be {@code null}
1742
     * @param startIndexInclusive
1743
     *            the starting index. Undervalue (&lt;0) is promoted to 0, overvalue (&gt;array.length) results in no
1744
     *            change.
1745
     * @param endIndexExclusive
1746
     *            elements up to endIndex-1 are reversed in the array. Undervalue (&lt; start index) results in no
1747
     *            change. Overvalue (&gt;array.length) is demoted to array length.
1748
     * @since 3.2
1749
     */
1750
    public static void reverse(final long[] array, final int startIndexInclusive, final int endIndexExclusive) {
1751 7 1. reverse : negated conditional → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : negated conditional → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : negated conditional → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : negated conditional → NOT_SCHEDULED
        if (array == null) {
1752
            return;
1753
        }
1754 14 1. reverse : changed conditional boundary → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : changed conditional boundary → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : changed conditional boundary → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : changed conditional boundary → NOT_SCHEDULED
8. reverse : negated conditional → NOT_SCHEDULED
9. reverse : changed conditional boundary → NOT_SCHEDULED
10. reverse : negated conditional → NOT_SCHEDULED
11. reverse : changed conditional boundary → NOT_SCHEDULED
12. reverse : negated conditional → NOT_SCHEDULED
13. reverse : changed conditional boundary → NOT_SCHEDULED
14. reverse : negated conditional → NOT_SCHEDULED
        int i = startIndexInclusive < 0 ? 0 : startIndexInclusive;
1755 7 1. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
2. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
3. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
4. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
5. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
6. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
7. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
        int j = Math.min(array.length, endIndexExclusive) - 1;
1756
        long tmp;
1757 14 1. reverse : changed conditional boundary → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : changed conditional boundary → NOT_SCHEDULED
4. reverse : changed conditional boundary → NOT_SCHEDULED
5. reverse : changed conditional boundary → NOT_SCHEDULED
6. reverse : changed conditional boundary → NOT_SCHEDULED
7. reverse : changed conditional boundary → NOT_SCHEDULED
8. reverse : changed conditional boundary → NOT_SCHEDULED
9. reverse : negated conditional → KILLED
10. reverse : negated conditional → KILLED
11. reverse : negated conditional → KILLED
12. reverse : negated conditional → KILLED
13. reverse : negated conditional → KILLED
14. reverse : negated conditional → KILLED
        while (j > i) {
1758
            tmp = array[j];
1759
            array[j] = array[i];
1760
            array[i] = tmp;
1761 7 1. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
2. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
3. reverse : Changed increment from -1 to 1 → KILLED
4. reverse : Changed increment from -1 to 1 → KILLED
5. reverse : Changed increment from -1 to 1 → KILLED
6. reverse : Changed increment from -1 to 1 → KILLED
7. reverse : Changed increment from -1 to 1 → KILLED
            j--;
1762 7 1. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
2. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
3. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
4. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
5. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
6. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
7. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
            i++;
1763
        }
1764
    }
1765
1766
    /**
1767
     * <p>
1768
     * Reverses the order of the given array in the given range.
1769
     * 
1770
     * <p>
1771
     * This method does nothing for a {@code null} input array.
1772
     * 
1773
     * @param array
1774
     *            the array to reverse, may be {@code null}
1775
     * @param startIndexInclusive
1776
     *            the starting index. Under value (&lt;0) is promoted to 0, over value (&gt;array.length) results in no
1777
     *            change.
1778
     * @param endIndexExclusive
1779
     *            elements up to endIndex-1 are reversed in the array. Under value (&lt; start index) results in no
1780
     *            change. Over value (&gt;array.length) is demoted to array length.
1781
     * @since 3.2
1782
     */
1783
    public static void reverse(final Object[] array, final int startIndexInclusive, final int endIndexExclusive) {
1784 7 1. reverse : negated conditional → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : negated conditional → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : negated conditional → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : negated conditional → NOT_SCHEDULED
        if (array == null) {
1785
            return;
1786
        }
1787 14 1. reverse : changed conditional boundary → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : changed conditional boundary → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : changed conditional boundary → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : changed conditional boundary → NOT_SCHEDULED
8. reverse : negated conditional → NOT_SCHEDULED
9. reverse : changed conditional boundary → NOT_SCHEDULED
10. reverse : negated conditional → NOT_SCHEDULED
11. reverse : changed conditional boundary → NOT_SCHEDULED
12. reverse : negated conditional → NOT_SCHEDULED
13. reverse : changed conditional boundary → NOT_SCHEDULED
14. reverse : negated conditional → NOT_SCHEDULED
        int i = startIndexInclusive < 0 ? 0 : startIndexInclusive;
1788 7 1. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
2. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
3. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
4. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
5. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
6. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
7. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
        int j = Math.min(array.length, endIndexExclusive) - 1;
1789
        Object tmp;
1790 14 1. reverse : changed conditional boundary → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : changed conditional boundary → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : changed conditional boundary → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : changed conditional boundary → NOT_SCHEDULED
8. reverse : negated conditional → NOT_SCHEDULED
9. reverse : changed conditional boundary → NOT_SCHEDULED
10. reverse : negated conditional → NOT_SCHEDULED
11. reverse : changed conditional boundary → NOT_SCHEDULED
12. reverse : negated conditional → NOT_SCHEDULED
13. reverse : changed conditional boundary → NOT_SCHEDULED
14. reverse : negated conditional → NOT_SCHEDULED
        while (j > i) {
1791
            tmp = array[j];
1792
            array[j] = array[i];
1793
            array[i] = tmp;
1794 7 1. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
2. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
3. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
4. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
5. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
6. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
7. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
            j--;
1795 7 1. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
2. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
3. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
4. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
5. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
6. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
7. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
            i++;
1796
        }
1797
    }
1798
1799
    /**
1800
     * <p>
1801
     * Reverses the order of the given array in the given range.
1802
     * 
1803
     * <p>
1804
     * This method does nothing for a {@code null} input array.
1805
     * 
1806
     * @param array
1807
     *            the array to reverse, may be {@code null}
1808
     * @param startIndexInclusive
1809
     *            the starting index. Undervalue (&lt;0) is promoted to 0, overvalue (&gt;array.length) results in no
1810
     *            change.
1811
     * @param endIndexExclusive
1812
     *            elements up to endIndex-1 are reversed in the array. Undervalue (&lt; start index) results in no
1813
     *            change. Overvalue (&gt;array.length) is demoted to array length.
1814
     * @since 3.2
1815
     */
1816
    public static void reverse(final short[] array, final int startIndexInclusive, final int endIndexExclusive) {
1817 7 1. reverse : negated conditional → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : negated conditional → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : negated conditional → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : negated conditional → NOT_SCHEDULED
        if (array == null) {
1818
            return;
1819
        }
1820 14 1. reverse : changed conditional boundary → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : changed conditional boundary → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : changed conditional boundary → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : changed conditional boundary → NOT_SCHEDULED
8. reverse : negated conditional → NOT_SCHEDULED
9. reverse : changed conditional boundary → NOT_SCHEDULED
10. reverse : negated conditional → NOT_SCHEDULED
11. reverse : changed conditional boundary → NOT_SCHEDULED
12. reverse : negated conditional → NOT_SCHEDULED
13. reverse : changed conditional boundary → NOT_SCHEDULED
14. reverse : negated conditional → NOT_SCHEDULED
        int i = startIndexInclusive < 0 ? 0 : startIndexInclusive;
1821 7 1. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
2. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
3. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
4. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
5. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
6. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
7. reverse : Replaced integer subtraction with addition → NOT_SCHEDULED
        int j = Math.min(array.length, endIndexExclusive) - 1;
1822
        short tmp;
1823 14 1. reverse : changed conditional boundary → NOT_SCHEDULED
2. reverse : negated conditional → NOT_SCHEDULED
3. reverse : changed conditional boundary → NOT_SCHEDULED
4. reverse : negated conditional → NOT_SCHEDULED
5. reverse : changed conditional boundary → NOT_SCHEDULED
6. reverse : negated conditional → NOT_SCHEDULED
7. reverse : changed conditional boundary → NOT_SCHEDULED
8. reverse : negated conditional → NOT_SCHEDULED
9. reverse : changed conditional boundary → NOT_SCHEDULED
10. reverse : negated conditional → NOT_SCHEDULED
11. reverse : changed conditional boundary → NOT_SCHEDULED
12. reverse : negated conditional → NOT_SCHEDULED
13. reverse : changed conditional boundary → NOT_SCHEDULED
14. reverse : negated conditional → NOT_SCHEDULED
        while (j > i) {
1824
            tmp = array[j];
1825
            array[j] = array[i];
1826
            array[i] = tmp;
1827 7 1. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
2. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
3. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
4. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
5. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
6. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
7. reverse : Changed increment from -1 to 1 → NOT_SCHEDULED
            j--;
1828 7 1. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
2. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
3. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
4. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
5. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
6. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
7. reverse : Changed increment from 1 to -1 → NOT_SCHEDULED
            i++;
1829
        }
1830
    }
1831
1832
    // Swap
1833
    //-----------------------------------------------------------------------
1834
    /**
1835
     * Swaps two elements in the given array.
1836
     *
1837
     * <p>There is no special handling for multi-dimensional arrays. This method
1838
     * does nothing for a {@code null} or empty input array or for overflow indices.
1839
     * Negative indices are promoted to 0(zero).</p>
1840
     * 
1841
     * Examples:
1842
     * <ul>
1843
     *     <li>ArrayUtils.swap(["1", "2", "3"], 0, 2) -&gt; ["3", "2", "1"]</li>
1844
     *     <li>ArrayUtils.swap(["1", "2", "3"], 0, 0) -&gt; ["1", "2", "3"]</li>
1845
     *     <li>ArrayUtils.swap(["1", "2", "3"], 1, 0) -&gt; ["2", "1", "3"]</li>
1846
     *     <li>ArrayUtils.swap(["1", "2", "3"], 0, 5) -&gt; ["1", "2", "3"]</li>
1847
     *     <li>ArrayUtils.swap(["1", "2", "3"], -1, 1) -&gt; ["2", "1", "3"]</li>
1848
     * </ul>
1849
     *
1850
     * @param array the array to swap, may be {@code null}
1851
     * @param offset1 the index of the first element to swap
1852
     * @param offset2 the index of the second element to swap
1853
     * @since 3.5
1854
     */
1855
    public static void swap(final Object[] array, int offset1, int offset2) {
1856 14 1. swap : negated conditional → NOT_SCHEDULED
2. swap : negated conditional → NOT_SCHEDULED
3. swap : negated conditional → NOT_SCHEDULED
4. swap : negated conditional → NOT_SCHEDULED
5. swap : negated conditional → NOT_SCHEDULED
6. swap : negated conditional → NOT_SCHEDULED
7. swap : negated conditional → NOT_SCHEDULED
8. swap : negated conditional → NOT_SCHEDULED
9. swap : negated conditional → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : negated conditional → NOT_SCHEDULED
12. swap : negated conditional → NOT_SCHEDULED
13. swap : negated conditional → NOT_SCHEDULED
14. swap : negated conditional → NOT_SCHEDULED
        if (array == null || array.length == 0) {
1857
            return;
1858
        }
1859 7 1. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
2. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
3. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
4. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
5. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
6. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
7. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
        swap(array, offset1, offset2, 1);
1860
    }
1861
1862
    /**
1863
     * Swaps two elements in the given long array.
1864
     *
1865
     * <p>There is no special handling for multi-dimensional arrays. This method
1866
     * does nothing for a {@code null} or empty input array or for overflow indices.
1867
     * Negative indices are promoted to 0(zero).</p>
1868
     *
1869
     * Examples:
1870
     * <ul>
1871
     *     <li>ArrayUtils.swap([true, false, true], 0, 2) -&gt; [true, false, true]</li>
1872
     *     <li>ArrayUtils.swap([true, false, true], 0, 0) -&gt; [true, false, true]</li>
1873
     *     <li>ArrayUtils.swap([true, false, true], 1, 0) -&gt; [false, true, true]</li>
1874
     *     <li>ArrayUtils.swap([true, false, true], 0, 5) -&gt; [true, false, true]</li>
1875
     *     <li>ArrayUtils.swap([true, false, true], -1, 1) -&gt; [false, true, true]</li>
1876
     * </ul>
1877
     *
1878
     *
1879
     * @param array  the array to swap, may be {@code null}
1880
     * @param offset1 the index of the first element to swap
1881
     * @param offset2 the index of the second element to swap
1882
     * @since 3.5
1883
     */
1884
    public static void swap(final long[] array, int offset1, int offset2) {
1885 14 1. swap : negated conditional → NOT_SCHEDULED
2. swap : negated conditional → NOT_SCHEDULED
3. swap : negated conditional → NOT_SCHEDULED
4. swap : negated conditional → NOT_SCHEDULED
5. swap : negated conditional → NOT_SCHEDULED
6. swap : negated conditional → NOT_SCHEDULED
7. swap : negated conditional → NOT_SCHEDULED
8. swap : negated conditional → NOT_SCHEDULED
9. swap : negated conditional → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : negated conditional → NOT_SCHEDULED
12. swap : negated conditional → NOT_SCHEDULED
13. swap : negated conditional → NOT_SCHEDULED
14. swap : negated conditional → NOT_SCHEDULED
        if (array == null || array.length == 0) {
1886
            return;
1887
        }
1888 7 1. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
2. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
3. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
4. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
5. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
6. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
7. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
        swap(array, offset1, offset2, 1);
1889
    }
1890
1891
    /**
1892
     * Swaps two elements in the given int array.
1893
     *
1894
     * <p>There is no special handling for multi-dimensional arrays. This method
1895
     * does nothing for a {@code null} or empty input array or for overflow indices.
1896
     * Negative indices are promoted to 0(zero).</p>
1897
     *
1898
     * Examples:
1899
     * <ul>
1900
     *     <li>ArrayUtils.swap([1, 2, 3], 0, 2) -&gt; [3, 2, 1]</li>
1901
     *     <li>ArrayUtils.swap([1, 2, 3], 0, 0) -&gt; [1, 2, 3]</li>
1902
     *     <li>ArrayUtils.swap([1, 2, 3], 1, 0) -&gt; [2, 1, 3]</li>
1903
     *     <li>ArrayUtils.swap([1, 2, 3], 0, 5) -&gt; [1, 2, 3]</li>
1904
     *     <li>ArrayUtils.swap([1, 2, 3], -1, 1) -&gt; [2, 1, 3]</li>
1905
     * </ul>
1906
     *
1907
     * @param array  the array to swap, may be {@code null}
1908
     * @param offset1 the index of the first element to swap
1909
     * @param offset2 the index of the second element to swap
1910
     * @since 3.5
1911
     */
1912
    public static void swap(final int[] array, int offset1, int offset2) {
1913 14 1. swap : negated conditional → NOT_SCHEDULED
2. swap : negated conditional → NOT_SCHEDULED
3. swap : negated conditional → NOT_SCHEDULED
4. swap : negated conditional → NOT_SCHEDULED
5. swap : negated conditional → NOT_SCHEDULED
6. swap : negated conditional → NOT_SCHEDULED
7. swap : negated conditional → NOT_SCHEDULED
8. swap : negated conditional → NOT_SCHEDULED
9. swap : negated conditional → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : negated conditional → NOT_SCHEDULED
12. swap : negated conditional → NOT_SCHEDULED
13. swap : negated conditional → NOT_SCHEDULED
14. swap : negated conditional → NOT_SCHEDULED
        if (array == null || array.length == 0) {
1914
            return;
1915
        }
1916 7 1. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
2. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
3. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
4. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
5. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
6. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
7. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
        swap(array, offset1, offset2, 1);
1917
    }
1918
1919
    /**
1920
     * Swaps two elements in the given short array.
1921
     *
1922
     * <p>There is no special handling for multi-dimensional arrays. This method
1923
     * does nothing for a {@code null} or empty input array or for overflow indices.
1924
     * Negative indices are promoted to 0(zero).</p>
1925
     *
1926
     * Examples:
1927
     * <ul>
1928
     *     <li>ArrayUtils.swap([1, 2, 3], 0, 2) -&gt; [3, 2, 1]</li>
1929
     *     <li>ArrayUtils.swap([1, 2, 3], 0, 0) -&gt; [1, 2, 3]</li>
1930
     *     <li>ArrayUtils.swap([1, 2, 3], 1, 0) -&gt; [2, 1, 3]</li>
1931
     *     <li>ArrayUtils.swap([1, 2, 3], 0, 5) -&gt; [1, 2, 3]</li>
1932
     *     <li>ArrayUtils.swap([1, 2, 3], -1, 1) -&gt; [2, 1, 3]</li>
1933
     * </ul>
1934
     *
1935
     * @param array  the array to swap, may be {@code null}
1936
     * @param offset1 the index of the first element to swap
1937
     * @param offset2 the index of the second element to swap
1938
     * @since 3.5
1939
     */
1940
    public static void swap(final short[] array, int offset1, int offset2) {
1941 14 1. swap : negated conditional → NO_COVERAGE
2. swap : negated conditional → NO_COVERAGE
3. swap : negated conditional → NO_COVERAGE
4. swap : negated conditional → NO_COVERAGE
5. swap : negated conditional → NO_COVERAGE
6. swap : negated conditional → NO_COVERAGE
7. swap : negated conditional → NO_COVERAGE
8. swap : negated conditional → NO_COVERAGE
9. swap : negated conditional → NO_COVERAGE
10. swap : negated conditional → NO_COVERAGE
11. swap : negated conditional → NO_COVERAGE
12. swap : negated conditional → NO_COVERAGE
13. swap : negated conditional → NO_COVERAGE
14. swap : negated conditional → NO_COVERAGE
        if (array == null || array.length == 0) {
1942
            return;
1943
        }
1944 7 1. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
2. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
3. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
4. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
5. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
6. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
7. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
        swap(array, offset1, offset2, 1);
1945
    }
1946
1947
    /**
1948
     * Swaps two elements in the given char array.
1949
     *
1950
     * <p>There is no special handling for multi-dimensional arrays. This method
1951
     * does nothing for a {@code null} or empty input array or for overflow indices.
1952
     * Negative indices are promoted to 0(zero).</p>
1953
     * 
1954
     * Examples:
1955
     * <ul>
1956
     *     <li>ArrayUtils.swap([1, 2, 3], 0, 2) -&gt; [3, 2, 1]</li>
1957
     *     <li>ArrayUtils.swap([1, 2, 3], 0, 0) -&gt; [1, 2, 3]</li>
1958
     *     <li>ArrayUtils.swap([1, 2, 3], 1, 0) -&gt; [2, 1, 3]</li>
1959
     *     <li>ArrayUtils.swap([1, 2, 3], 0, 5) -&gt; [1, 2, 3]</li>
1960
     *     <li>ArrayUtils.swap([1, 2, 3], -1, 1) -&gt; [2, 1, 3]</li>
1961
     * </ul>
1962
     *
1963
     * @param array  the array to swap, may be {@code null}
1964
     * @param offset1 the index of the first element to swap
1965
     * @param offset2 the index of the second element to swap
1966
     * @since 3.5
1967
     */
1968
    public static void swap(final char[] array, int offset1, int offset2) {
1969 14 1. swap : negated conditional → NOT_SCHEDULED
2. swap : negated conditional → NOT_SCHEDULED
3. swap : negated conditional → NOT_SCHEDULED
4. swap : negated conditional → NOT_SCHEDULED
5. swap : negated conditional → NOT_SCHEDULED
6. swap : negated conditional → NOT_SCHEDULED
7. swap : negated conditional → NOT_SCHEDULED
8. swap : negated conditional → NOT_SCHEDULED
9. swap : negated conditional → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : negated conditional → NOT_SCHEDULED
12. swap : negated conditional → NOT_SCHEDULED
13. swap : negated conditional → NOT_SCHEDULED
14. swap : negated conditional → NOT_SCHEDULED
        if (array == null || array.length == 0) {
1970
            return;
1971
        }
1972 7 1. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
2. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
3. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
4. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
5. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
6. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
7. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
        swap(array, offset1, offset2, 1);
1973
    }
1974
1975
    /**
1976
     * Swaps two elements in the given byte array.
1977
     *
1978
     * <p>There is no special handling for multi-dimensional arrays. This method
1979
     * does nothing for a {@code null} or empty input array or for overflow indices.
1980
     * Negative indices are promoted to 0(zero).</p>
1981
     *
1982
     * Examples:
1983
     * <ul>
1984
     *     <li>ArrayUtils.swap([1, 2, 3], 0, 2) -&gt; [3, 2, 1]</li>
1985
     *     <li>ArrayUtils.swap([1, 2, 3], 0, 0) -&gt; [1, 2, 3]</li>
1986
     *     <li>ArrayUtils.swap([1, 2, 3], 1, 0) -&gt; [2, 1, 3]</li>
1987
     *     <li>ArrayUtils.swap([1, 2, 3], 0, 5) -&gt; [1, 2, 3]</li>
1988
     *     <li>ArrayUtils.swap([1, 2, 3], -1, 1) -&gt; [2, 1, 3]</li>
1989
     * </ul>
1990
     *
1991
     * @param array  the array to swap, may be {@code null}
1992
     * @param offset1 the index of the first element to swap
1993
     * @param offset2 the index of the second element to swap
1994
     * @since 3.5
1995
     */
1996
    public static void swap(final byte[] array, int offset1, int offset2) {
1997 14 1. swap : negated conditional → NO_COVERAGE
2. swap : negated conditional → NO_COVERAGE
3. swap : negated conditional → NO_COVERAGE
4. swap : negated conditional → NO_COVERAGE
5. swap : negated conditional → NO_COVERAGE
6. swap : negated conditional → NO_COVERAGE
7. swap : negated conditional → NO_COVERAGE
8. swap : negated conditional → NO_COVERAGE
9. swap : negated conditional → NO_COVERAGE
10. swap : negated conditional → NO_COVERAGE
11. swap : negated conditional → NO_COVERAGE
12. swap : negated conditional → NO_COVERAGE
13. swap : negated conditional → NO_COVERAGE
14. swap : negated conditional → NO_COVERAGE
        if (array == null || array.length == 0) {
1998
            return;
1999
        }
2000 7 1. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
2. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
3. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
4. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
5. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
6. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
7. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
        swap(array, offset1, offset2, 1);
2001
    }
2002
2003
    /**
2004
     * Swaps two elements in the given double array.
2005
     *
2006
     * <p>There is no special handling for multi-dimensional arrays. This method
2007
     * does nothing for a {@code null} or empty input array or for overflow indices.
2008
     * Negative indices are promoted to 0(zero).</p>
2009
     *
2010
     * Examples:
2011
     * <ul>
2012
     *     <li>ArrayUtils.swap([1, 2, 3], 0, 2) -&gt; [3, 2, 1]</li>
2013
     *     <li>ArrayUtils.swap([1, 2, 3], 0, 0) -&gt; [1, 2, 3]</li>
2014
     *     <li>ArrayUtils.swap([1, 2, 3], 1, 0) -&gt; [2, 1, 3]</li>
2015
     *     <li>ArrayUtils.swap([1, 2, 3], 0, 5) -&gt; [1, 2, 3]</li>
2016
     *     <li>ArrayUtils.swap([1, 2, 3], -1, 1) -&gt; [2, 1, 3]</li>
2017
     * </ul>
2018
     *
2019
     * @param array  the array to swap, may be {@code null}
2020
     * @param offset1 the index of the first element to swap
2021
     * @param offset2 the index of the second element to swap
2022
     * @since 3.5
2023
     */
2024
    public static void swap(final double[] array, int offset1, int offset2) {
2025 14 1. swap : negated conditional → NOT_SCHEDULED
2. swap : negated conditional → NOT_SCHEDULED
3. swap : negated conditional → NOT_SCHEDULED
4. swap : negated conditional → NOT_SCHEDULED
5. swap : negated conditional → NOT_SCHEDULED
6. swap : negated conditional → NOT_SCHEDULED
7. swap : negated conditional → NOT_SCHEDULED
8. swap : negated conditional → NOT_SCHEDULED
9. swap : negated conditional → KILLED
10. swap : negated conditional → KILLED
11. swap : negated conditional → KILLED
12. swap : negated conditional → KILLED
13. swap : negated conditional → KILLED
14. swap : negated conditional → KILLED
        if (array == null || array.length == 0) {
2026
            return;
2027
        }
2028 7 1. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
2. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
3. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
4. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
5. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
6. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
7. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
        swap(array, offset1, offset2, 1);
2029
    }
2030
2031
    /**
2032
     * Swaps two elements in the given float array.
2033
     *
2034
     * <p>There is no special handling for multi-dimensional arrays. This method
2035
     * does nothing for a {@code null} or empty input array or for overflow indices.
2036
     * Negative indices are promoted to 0(zero).</p>
2037
     *
2038
     * Examples:
2039
     * <ul>
2040
     *     <li>ArrayUtils.swap([1, 2, 3], 0, 2) -&gt; [3, 2, 1]</li>
2041
     *     <li>ArrayUtils.swap([1, 2, 3], 0, 0) -&gt; [1, 2, 3]</li>
2042
     *     <li>ArrayUtils.swap([1, 2, 3], 1, 0) -&gt; [2, 1, 3]</li>
2043
     *     <li>ArrayUtils.swap([1, 2, 3], 0, 5) -&gt; [1, 2, 3]</li>
2044
     *     <li>ArrayUtils.swap([1, 2, 3], -1, 1) -&gt; [2, 1, 3]</li>
2045
     * </ul>
2046
     *
2047
     * @param array  the array to swap, may be {@code null}
2048
     * @param offset1 the index of the first element to swap
2049
     * @param offset2 the index of the second element to swap
2050
     * @since 3.5
2051
     */
2052
    public static void swap(final float[] array, int offset1, int offset2) {
2053 14 1. swap : negated conditional → NOT_SCHEDULED
2. swap : negated conditional → NOT_SCHEDULED
3. swap : negated conditional → NOT_SCHEDULED
4. swap : negated conditional → NOT_SCHEDULED
5. swap : negated conditional → NOT_SCHEDULED
6. swap : negated conditional → NOT_SCHEDULED
7. swap : negated conditional → NOT_SCHEDULED
8. swap : negated conditional → NOT_SCHEDULED
9. swap : negated conditional → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : negated conditional → NOT_SCHEDULED
12. swap : negated conditional → NOT_SCHEDULED
13. swap : negated conditional → NOT_SCHEDULED
14. swap : negated conditional → NOT_SCHEDULED
        if (array == null || array.length == 0) {
2054
            return;
2055
        }
2056 7 1. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
2. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
3. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
4. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
5. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
6. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
7. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
        swap(array, offset1, offset2, 1);
2057
    }
2058
2059
    /**
2060
     * Swaps two elements in the given boolean array.
2061
     *
2062
     * <p>There is no special handling for multi-dimensional arrays. This method
2063
     * does nothing for a {@code null} or empty input array or for overflow indices.
2064
     * Negative indices are promoted to 0(zero).</p>
2065
     *
2066
     * Examples:
2067
     * <ul>
2068
     *     <li>ArrayUtils.swap([1, 2, 3], 0, 2) -&gt; [3, 2, 1]</li>
2069
     *     <li>ArrayUtils.swap([1, 2, 3], 0, 0) -&gt; [1, 2, 3]</li>
2070
     *     <li>ArrayUtils.swap([1, 2, 3], 1, 0) -&gt; [2, 1, 3]</li>
2071
     *     <li>ArrayUtils.swap([1, 2, 3], 0, 5) -&gt; [1, 2, 3]</li>
2072
     *     <li>ArrayUtils.swap([1, 2, 3], -1, 1) -&gt; [2, 1, 3]</li>
2073
     * </ul>
2074
     *
2075
     * @param array  the array to swap, may be {@code null}
2076
     * @param offset1 the index of the first element to swap
2077
     * @param offset2 the index of the second element to swap
2078
     * @since 3.5
2079
     */
2080
    public static void swap(final boolean[] array, int offset1, int offset2) {
2081 14 1. swap : negated conditional → NO_COVERAGE
2. swap : negated conditional → NO_COVERAGE
3. swap : negated conditional → NO_COVERAGE
4. swap : negated conditional → NO_COVERAGE
5. swap : negated conditional → NO_COVERAGE
6. swap : negated conditional → NO_COVERAGE
7. swap : negated conditional → NO_COVERAGE
8. swap : negated conditional → NO_COVERAGE
9. swap : negated conditional → NO_COVERAGE
10. swap : negated conditional → NO_COVERAGE
11. swap : negated conditional → NO_COVERAGE
12. swap : negated conditional → NO_COVERAGE
13. swap : negated conditional → NO_COVERAGE
14. swap : negated conditional → NO_COVERAGE
        if (array == null || array.length == 0) {
2082
            return;
2083
        }
2084 7 1. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
2. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
3. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
4. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
5. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
6. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
7. swap : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
        swap(array, offset1, offset2, 1);
2085
    }
2086
2087
    /**
2088
     * Swaps a series of elements in the given boolean array.
2089
     *
2090
     * <p>This method does nothing for a {@code null} or empty input array or
2091
     * for overflow indices. Negative indices are promoted to 0(zero). If any
2092
     * of the sub-arrays to swap falls outside of the given array, then the
2093
     * swap is stopped at the end of the array and as many as possible elements
2094
     * are swapped.</p>
2095
     * 
2096
     * Examples:
2097
     * <ul>
2098
     *     <li>ArrayUtils.swap([true, false, true, false], 0, 2, 1) -&gt; [true, false, true, false]</li>
2099
     *     <li>ArrayUtils.swap([true, false, true, false], 0, 0, 1) -&gt; [true, false, true, false]</li>
2100
     *     <li>ArrayUtils.swap([true, false, true, false], 0, 2, 2) -&gt; [true, false, true, false]</li>
2101
     *     <li>ArrayUtils.swap([true, false, true, false], -3, 2, 2) -&gt; [true, false, true, false]</li>
2102
     *     <li>ArrayUtils.swap([true, false, true, false], 0, 3, 3) -&gt; [false, false, true, true]</li>
2103
     * </ul>
2104
     *
2105
     * @param array the array to swap, may be {@code null}
2106
     * @param offset1 the index of the first element in the series to swap
2107
     * @param offset2 the index of the second element in the series to swap
2108
     * @param len the number of elements to swap starting with the given indices
2109
     * @since 3.5
2110
     */
2111
    public static void swap(final boolean[] array, int offset1, int offset2, int len) {
2112 42 1. swap : changed conditional boundary → NO_COVERAGE
2. swap : changed conditional boundary → NO_COVERAGE
3. swap : negated conditional → NO_COVERAGE
4. swap : negated conditional → NO_COVERAGE
5. swap : negated conditional → NO_COVERAGE
6. swap : negated conditional → NO_COVERAGE
7. swap : changed conditional boundary → NO_COVERAGE
8. swap : changed conditional boundary → NO_COVERAGE
9. swap : negated conditional → NO_COVERAGE
10. swap : negated conditional → NO_COVERAGE
11. swap : negated conditional → NO_COVERAGE
12. swap : negated conditional → NO_COVERAGE
13. swap : changed conditional boundary → NO_COVERAGE
14. swap : changed conditional boundary → NO_COVERAGE
15. swap : negated conditional → NO_COVERAGE
16. swap : negated conditional → NO_COVERAGE
17. swap : negated conditional → NO_COVERAGE
18. swap : negated conditional → NO_COVERAGE
19. swap : changed conditional boundary → NO_COVERAGE
20. swap : changed conditional boundary → NO_COVERAGE
21. swap : negated conditional → NO_COVERAGE
22. swap : negated conditional → NO_COVERAGE
23. swap : negated conditional → NO_COVERAGE
24. swap : negated conditional → NO_COVERAGE
25. swap : changed conditional boundary → NO_COVERAGE
26. swap : changed conditional boundary → NO_COVERAGE
27. swap : negated conditional → NO_COVERAGE
28. swap : negated conditional → NO_COVERAGE
29. swap : negated conditional → NO_COVERAGE
30. swap : negated conditional → NO_COVERAGE
31. swap : changed conditional boundary → NO_COVERAGE
32. swap : changed conditional boundary → NO_COVERAGE
33. swap : negated conditional → NO_COVERAGE
34. swap : negated conditional → NO_COVERAGE
35. swap : negated conditional → NO_COVERAGE
36. swap : negated conditional → NO_COVERAGE
37. swap : changed conditional boundary → NO_COVERAGE
38. swap : changed conditional boundary → NO_COVERAGE
39. swap : negated conditional → NO_COVERAGE
40. swap : negated conditional → NO_COVERAGE
41. swap : negated conditional → NO_COVERAGE
42. swap : negated conditional → NO_COVERAGE
        if (array == null || array.length == 0 || offset1 >= array.length || offset2 >= array.length) {
2113
            return;
2114
        }
2115 14 1. swap : changed conditional boundary → NO_COVERAGE
2. swap : negated conditional → NO_COVERAGE
3. swap : changed conditional boundary → NO_COVERAGE
4. swap : negated conditional → NO_COVERAGE
5. swap : changed conditional boundary → NO_COVERAGE
6. swap : negated conditional → NO_COVERAGE
7. swap : changed conditional boundary → NO_COVERAGE
8. swap : negated conditional → NO_COVERAGE
9. swap : changed conditional boundary → NO_COVERAGE
10. swap : negated conditional → NO_COVERAGE
11. swap : changed conditional boundary → NO_COVERAGE
12. swap : negated conditional → NO_COVERAGE
13. swap : changed conditional boundary → NO_COVERAGE
14. swap : negated conditional → NO_COVERAGE
        if (offset1 < 0) {
2116
            offset1 = 0;
2117
        }
2118 14 1. swap : changed conditional boundary → NO_COVERAGE
2. swap : negated conditional → NO_COVERAGE
3. swap : changed conditional boundary → NO_COVERAGE
4. swap : negated conditional → NO_COVERAGE
5. swap : changed conditional boundary → NO_COVERAGE
6. swap : negated conditional → NO_COVERAGE
7. swap : changed conditional boundary → NO_COVERAGE
8. swap : negated conditional → NO_COVERAGE
9. swap : changed conditional boundary → NO_COVERAGE
10. swap : negated conditional → NO_COVERAGE
11. swap : changed conditional boundary → NO_COVERAGE
12. swap : negated conditional → NO_COVERAGE
13. swap : changed conditional boundary → NO_COVERAGE
14. swap : negated conditional → NO_COVERAGE
        if (offset2 < 0) {
2119
            offset2 = 0;
2120
        }
2121 14 1. swap : Replaced integer subtraction with addition → NO_COVERAGE
2. swap : Replaced integer subtraction with addition → NO_COVERAGE
3. swap : Replaced integer subtraction with addition → NO_COVERAGE
4. swap : Replaced integer subtraction with addition → NO_COVERAGE
5. swap : Replaced integer subtraction with addition → NO_COVERAGE
6. swap : Replaced integer subtraction with addition → NO_COVERAGE
7. swap : Replaced integer subtraction with addition → NO_COVERAGE
8. swap : Replaced integer subtraction with addition → NO_COVERAGE
9. swap : Replaced integer subtraction with addition → NO_COVERAGE
10. swap : Replaced integer subtraction with addition → NO_COVERAGE
11. swap : Replaced integer subtraction with addition → NO_COVERAGE
12. swap : Replaced integer subtraction with addition → NO_COVERAGE
13. swap : Replaced integer subtraction with addition → NO_COVERAGE
14. swap : Replaced integer subtraction with addition → NO_COVERAGE
        len = Math.min(Math.min(len, array.length - offset1), array.length - offset2);
2122 35 1. swap : changed conditional boundary → NO_COVERAGE
2. swap : Changed increment from 1 to -1 → NO_COVERAGE
3. swap : Changed increment from 1 to -1 → NO_COVERAGE
4. swap : Changed increment from 1 to -1 → NO_COVERAGE
5. swap : negated conditional → NO_COVERAGE
6. swap : changed conditional boundary → NO_COVERAGE
7. swap : Changed increment from 1 to -1 → NO_COVERAGE
8. swap : Changed increment from 1 to -1 → NO_COVERAGE
9. swap : Changed increment from 1 to -1 → NO_COVERAGE
10. swap : negated conditional → NO_COVERAGE
11. swap : changed conditional boundary → NO_COVERAGE
12. swap : Changed increment from 1 to -1 → NO_COVERAGE
13. swap : Changed increment from 1 to -1 → NO_COVERAGE
14. swap : Changed increment from 1 to -1 → NO_COVERAGE
15. swap : negated conditional → NO_COVERAGE
16. swap : changed conditional boundary → NO_COVERAGE
17. swap : Changed increment from 1 to -1 → NO_COVERAGE
18. swap : Changed increment from 1 to -1 → NO_COVERAGE
19. swap : Changed increment from 1 to -1 → NO_COVERAGE
20. swap : negated conditional → NO_COVERAGE
21. swap : changed conditional boundary → NO_COVERAGE
22. swap : Changed increment from 1 to -1 → NO_COVERAGE
23. swap : Changed increment from 1 to -1 → NO_COVERAGE
24. swap : Changed increment from 1 to -1 → NO_COVERAGE
25. swap : negated conditional → NO_COVERAGE
26. swap : changed conditional boundary → NO_COVERAGE
27. swap : Changed increment from 1 to -1 → NO_COVERAGE
28. swap : Changed increment from 1 to -1 → NO_COVERAGE
29. swap : Changed increment from 1 to -1 → NO_COVERAGE
30. swap : negated conditional → NO_COVERAGE
31. swap : changed conditional boundary → NO_COVERAGE
32. swap : Changed increment from 1 to -1 → NO_COVERAGE
33. swap : Changed increment from 1 to -1 → NO_COVERAGE
34. swap : Changed increment from 1 to -1 → NO_COVERAGE
35. swap : negated conditional → NO_COVERAGE
        for (int i = 0; i < len; i++, offset1++, offset2++) {
2123
            boolean aux = array[offset1];
2124
            array[offset1] = array[offset2];
2125
            array[offset2] = aux;
2126
        }
2127
    }
2128
2129
    /**
2130
     * Swaps a series of elements in the given byte array.
2131
     *
2132
     * <p>This method does nothing for a {@code null} or empty input array or
2133
     * for overflow indices. Negative indices are promoted to 0(zero). If any
2134
     * of the sub-arrays to swap falls outside of the given array, then the
2135
     * swap is stopped at the end of the array and as many as possible elements
2136
     * are swapped.</p>
2137
     *
2138
     * Examples:
2139
     * <ul>
2140
     *     <li>ArrayUtils.swap([1, 2, 3, 4], 0, 2, 1) -&gt; [3, 2, 1, 4]</li>
2141
     *     <li>ArrayUtils.swap([1, 2, 3, 4], 0, 0, 1) -&gt; [1, 2, 3, 4]</li>
2142
     *     <li>ArrayUtils.swap([1, 2, 3, 4], 2, 0, 2) -&gt; [3, 4, 1, 2]</li>
2143
     *     <li>ArrayUtils.swap([1, 2, 3, 4], -3, 2, 2) -&gt; [3, 4, 1, 2]</li>
2144
     *     <li>ArrayUtils.swap([1, 2, 3, 4], 0, 3, 3) -&gt; [4, 2, 3, 1]</li>
2145
     * </ul>
2146
     *
2147
     * @param array the array to swap, may be {@code null}
2148
     * @param offset1 the index of the first element in the series to swap
2149
     * @param offset2 the index of the second element in the series to swap
2150
     * @param len the number of elements to swap starting with the given indices
2151
     * @since 3.5
2152
     */
2153
    public static void swap(final byte[] array, int offset1, int offset2, int len) {
2154 42 1. swap : changed conditional boundary → NOT_SCHEDULED
2. swap : changed conditional boundary → NOT_SCHEDULED
3. swap : negated conditional → NOT_SCHEDULED
4. swap : negated conditional → NOT_SCHEDULED
5. swap : negated conditional → NOT_SCHEDULED
6. swap : negated conditional → NOT_SCHEDULED
7. swap : changed conditional boundary → NOT_SCHEDULED
8. swap : changed conditional boundary → NOT_SCHEDULED
9. swap : negated conditional → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : negated conditional → NOT_SCHEDULED
12. swap : negated conditional → NOT_SCHEDULED
13. swap : changed conditional boundary → NOT_SCHEDULED
14. swap : changed conditional boundary → NOT_SCHEDULED
15. swap : negated conditional → NOT_SCHEDULED
16. swap : negated conditional → NOT_SCHEDULED
17. swap : negated conditional → NOT_SCHEDULED
18. swap : negated conditional → NOT_SCHEDULED
19. swap : changed conditional boundary → NOT_SCHEDULED
20. swap : changed conditional boundary → NOT_SCHEDULED
21. swap : negated conditional → NOT_SCHEDULED
22. swap : negated conditional → NOT_SCHEDULED
23. swap : negated conditional → NOT_SCHEDULED
24. swap : negated conditional → NOT_SCHEDULED
25. swap : changed conditional boundary → NOT_SCHEDULED
26. swap : changed conditional boundary → NOT_SCHEDULED
27. swap : negated conditional → NOT_SCHEDULED
28. swap : negated conditional → NOT_SCHEDULED
29. swap : negated conditional → NOT_SCHEDULED
30. swap : negated conditional → NOT_SCHEDULED
31. swap : changed conditional boundary → NOT_SCHEDULED
32. swap : changed conditional boundary → NOT_SCHEDULED
33. swap : negated conditional → NOT_SCHEDULED
34. swap : negated conditional → NOT_SCHEDULED
35. swap : negated conditional → NOT_SCHEDULED
36. swap : negated conditional → NOT_SCHEDULED
37. swap : changed conditional boundary → NOT_SCHEDULED
38. swap : changed conditional boundary → NOT_SCHEDULED
39. swap : negated conditional → NOT_SCHEDULED
40. swap : negated conditional → NOT_SCHEDULED
41. swap : negated conditional → NOT_SCHEDULED
42. swap : negated conditional → NOT_SCHEDULED
        if (array == null || array.length == 0 || offset1 >= array.length || offset2 >= array.length) {
2155
            return;
2156
        }
2157 14 1. swap : changed conditional boundary → NOT_SCHEDULED
2. swap : negated conditional → NOT_SCHEDULED
3. swap : changed conditional boundary → NOT_SCHEDULED
4. swap : negated conditional → NOT_SCHEDULED
5. swap : changed conditional boundary → NOT_SCHEDULED
6. swap : negated conditional → NOT_SCHEDULED
7. swap : changed conditional boundary → NOT_SCHEDULED
8. swap : negated conditional → NOT_SCHEDULED
9. swap : changed conditional boundary → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : changed conditional boundary → NOT_SCHEDULED
12. swap : negated conditional → NOT_SCHEDULED
13. swap : changed conditional boundary → NOT_SCHEDULED
14. swap : negated conditional → NOT_SCHEDULED
        if (offset1 < 0) {
2158
            offset1 = 0;
2159
        }
2160 14 1. swap : changed conditional boundary → NOT_SCHEDULED
2. swap : negated conditional → NOT_SCHEDULED
3. swap : changed conditional boundary → NOT_SCHEDULED
4. swap : negated conditional → NOT_SCHEDULED
5. swap : changed conditional boundary → NOT_SCHEDULED
6. swap : negated conditional → NOT_SCHEDULED
7. swap : changed conditional boundary → NOT_SCHEDULED
8. swap : negated conditional → NOT_SCHEDULED
9. swap : changed conditional boundary → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : changed conditional boundary → NOT_SCHEDULED
12. swap : negated conditional → NOT_SCHEDULED
13. swap : changed conditional boundary → NOT_SCHEDULED
14. swap : negated conditional → NOT_SCHEDULED
        if (offset2 < 0) {
2161
            offset2 = 0;
2162
        }
2163 14 1. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
2. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
3. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
4. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
5. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
6. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
7. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
8. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
9. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
10. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
11. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
12. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
13. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
14. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
        len = Math.min(Math.min(len, array.length - offset1), array.length - offset2);
2164 35 1. swap : changed conditional boundary → NOT_SCHEDULED
2. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
3. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
4. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
5. swap : negated conditional → NOT_SCHEDULED
6. swap : changed conditional boundary → NOT_SCHEDULED
7. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
8. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
9. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : changed conditional boundary → NOT_SCHEDULED
12. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
13. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
14. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
15. swap : negated conditional → NOT_SCHEDULED
16. swap : changed conditional boundary → NOT_SCHEDULED
17. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
18. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
19. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
20. swap : negated conditional → NOT_SCHEDULED
21. swap : changed conditional boundary → NOT_SCHEDULED
22. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
23. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
24. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
25. swap : negated conditional → NOT_SCHEDULED
26. swap : changed conditional boundary → NOT_SCHEDULED
27. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
28. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
29. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
30. swap : negated conditional → NOT_SCHEDULED
31. swap : changed conditional boundary → NOT_SCHEDULED
32. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
33. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
34. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
35. swap : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < len; i++, offset1++, offset2++) {
2165
            byte aux = array[offset1];
2166
            array[offset1] = array[offset2];
2167
            array[offset2] = aux;
2168
        }
2169
    }
2170
2171
    /**
2172
     * Swaps a series of elements in the given char array.
2173
     *
2174
     * <p>This method does nothing for a {@code null} or empty input array or
2175
     * for overflow indices. Negative indices are promoted to 0(zero). If any
2176
     * of the sub-arrays to swap falls outside of the given array, then the
2177
     * swap is stopped at the end of the array and as many as possible elements
2178
     * are swapped.</p>
2179
     * 
2180
     * Examples:
2181
     * <ul>
2182
     *     <li>ArrayUtils.swap([1, 2, 3, 4], 0, 2, 1) -&gt; [3, 2, 1, 4]</li>
2183
     *     <li>ArrayUtils.swap([1, 2, 3, 4], 0, 0, 1) -&gt; [1, 2, 3, 4]</li>
2184
     *     <li>ArrayUtils.swap([1, 2, 3, 4], 2, 0, 2) -&gt; [3, 4, 1, 2]</li>
2185
     *     <li>ArrayUtils.swap([1, 2, 3, 4], -3, 2, 2) -&gt; [3, 4, 1, 2]</li>
2186
     *     <li>ArrayUtils.swap([1, 2, 3, 4], 0, 3, 3) -&gt; [4, 2, 3, 1]</li>
2187
     * </ul>
2188
     *
2189
     * @param array the array to swap, may be {@code null}
2190
     * @param offset1 the index of the first element in the series to swap
2191
     * @param offset2 the index of the second element in the series to swap
2192
     * @param len the number of elements to swap starting with the given indices
2193
     * @since 3.5
2194
     */
2195
    public static void swap(final char[] array, int offset1, int offset2, int len) {
2196 42 1. swap : changed conditional boundary → NOT_SCHEDULED
2. swap : changed conditional boundary → NOT_SCHEDULED
3. swap : negated conditional → NOT_SCHEDULED
4. swap : negated conditional → NOT_SCHEDULED
5. swap : negated conditional → NOT_SCHEDULED
6. swap : negated conditional → NOT_SCHEDULED
7. swap : changed conditional boundary → NOT_SCHEDULED
8. swap : changed conditional boundary → NOT_SCHEDULED
9. swap : negated conditional → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : negated conditional → NOT_SCHEDULED
12. swap : negated conditional → NOT_SCHEDULED
13. swap : changed conditional boundary → NOT_SCHEDULED
14. swap : changed conditional boundary → NOT_SCHEDULED
15. swap : negated conditional → NOT_SCHEDULED
16. swap : negated conditional → NOT_SCHEDULED
17. swap : negated conditional → NOT_SCHEDULED
18. swap : negated conditional → NOT_SCHEDULED
19. swap : changed conditional boundary → NOT_SCHEDULED
20. swap : changed conditional boundary → NOT_SCHEDULED
21. swap : negated conditional → NOT_SCHEDULED
22. swap : negated conditional → NOT_SCHEDULED
23. swap : negated conditional → NOT_SCHEDULED
24. swap : negated conditional → NOT_SCHEDULED
25. swap : changed conditional boundary → NOT_SCHEDULED
26. swap : changed conditional boundary → NOT_SCHEDULED
27. swap : negated conditional → NOT_SCHEDULED
28. swap : negated conditional → NOT_SCHEDULED
29. swap : negated conditional → NOT_SCHEDULED
30. swap : negated conditional → NOT_SCHEDULED
31. swap : changed conditional boundary → NOT_SCHEDULED
32. swap : changed conditional boundary → NOT_SCHEDULED
33. swap : negated conditional → NOT_SCHEDULED
34. swap : negated conditional → NOT_SCHEDULED
35. swap : negated conditional → NOT_SCHEDULED
36. swap : negated conditional → NOT_SCHEDULED
37. swap : changed conditional boundary → NOT_SCHEDULED
38. swap : changed conditional boundary → NOT_SCHEDULED
39. swap : negated conditional → NOT_SCHEDULED
40. swap : negated conditional → NOT_SCHEDULED
41. swap : negated conditional → NOT_SCHEDULED
42. swap : negated conditional → NOT_SCHEDULED
        if (array == null || array.length == 0 || offset1 >= array.length || offset2 >= array.length) {
2197
            return;
2198
        }
2199 14 1. swap : changed conditional boundary → NOT_SCHEDULED
2. swap : negated conditional → NOT_SCHEDULED
3. swap : changed conditional boundary → NOT_SCHEDULED
4. swap : negated conditional → NOT_SCHEDULED
5. swap : changed conditional boundary → NOT_SCHEDULED
6. swap : negated conditional → NOT_SCHEDULED
7. swap : changed conditional boundary → NOT_SCHEDULED
8. swap : negated conditional → NOT_SCHEDULED
9. swap : changed conditional boundary → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : changed conditional boundary → NOT_SCHEDULED
12. swap : negated conditional → NOT_SCHEDULED
13. swap : changed conditional boundary → NOT_SCHEDULED
14. swap : negated conditional → NOT_SCHEDULED
        if (offset1 < 0) {
2200
            offset1 = 0;
2201
        }
2202 14 1. swap : changed conditional boundary → NOT_SCHEDULED
2. swap : negated conditional → NOT_SCHEDULED
3. swap : changed conditional boundary → NOT_SCHEDULED
4. swap : negated conditional → NOT_SCHEDULED
5. swap : changed conditional boundary → NOT_SCHEDULED
6. swap : negated conditional → NOT_SCHEDULED
7. swap : changed conditional boundary → NOT_SCHEDULED
8. swap : negated conditional → NOT_SCHEDULED
9. swap : changed conditional boundary → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : changed conditional boundary → NOT_SCHEDULED
12. swap : negated conditional → NOT_SCHEDULED
13. swap : changed conditional boundary → NOT_SCHEDULED
14. swap : negated conditional → NOT_SCHEDULED
        if (offset2 < 0) {
2203
            offset2 = 0;
2204
        }
2205 14 1. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
2. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
3. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
4. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
5. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
6. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
7. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
8. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
9. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
10. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
11. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
12. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
13. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
14. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
        len = Math.min(Math.min(len, array.length - offset1), array.length - offset2);
2206 35 1. swap : changed conditional boundary → NOT_SCHEDULED
2. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
3. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
4. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
5. swap : negated conditional → NOT_SCHEDULED
6. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
7. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
8. swap : negated conditional → NOT_SCHEDULED
9. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
10. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
11. swap : negated conditional → NOT_SCHEDULED
12. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
13. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
14. swap : negated conditional → NOT_SCHEDULED
15. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
16. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
17. swap : negated conditional → NOT_SCHEDULED
18. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
19. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
20. swap : negated conditional → NOT_SCHEDULED
21. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
22. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
23. swap : negated conditional → NOT_SCHEDULED
24. swap : changed conditional boundary → KILLED
25. swap : Changed increment from 1 to -1 → KILLED
26. swap : changed conditional boundary → KILLED
27. swap : Changed increment from 1 to -1 → KILLED
28. swap : changed conditional boundary → KILLED
29. swap : Changed increment from 1 to -1 → KILLED
30. swap : changed conditional boundary → KILLED
31. swap : Changed increment from 1 to -1 → KILLED
32. swap : changed conditional boundary → KILLED
33. swap : Changed increment from 1 to -1 → KILLED
34. swap : changed conditional boundary → KILLED
35. swap : Changed increment from 1 to -1 → KILLED
        for (int i = 0; i < len; i++, offset1++, offset2++) {
2207
            char aux = array[offset1];
2208
            array[offset1] = array[offset2];
2209
            array[offset2] = aux;
2210
        }
2211
    }
2212
2213
    /**
2214
     * Swaps a series of elements in the given double array.
2215
     *
2216
     * <p>This method does nothing for a {@code null} or empty input array or
2217
     * for overflow indices. Negative indices are promoted to 0(zero). If any
2218
     * of the sub-arrays to swap falls outside of the given array, then the
2219
     * swap is stopped at the end of the array and as many as possible elements
2220
     * are swapped.</p>
2221
     *
2222
     * Examples:
2223
     * <ul>
2224
     *     <li>ArrayUtils.swap([1, 2, 3, 4], 0, 2, 1) -&gt; [3, 2, 1, 4]</li>
2225
     *     <li>ArrayUtils.swap([1, 2, 3, 4], 0, 0, 1) -&gt; [1, 2, 3, 4]</li>
2226
     *     <li>ArrayUtils.swap([1, 2, 3, 4], 2, 0, 2) -&gt; [3, 4, 1, 2]</li>
2227
     *     <li>ArrayUtils.swap([1, 2, 3, 4], -3, 2, 2) -&gt; [3, 4, 1, 2]</li>
2228
     *     <li>ArrayUtils.swap([1, 2, 3, 4], 0, 3, 3) -&gt; [4, 2, 3, 1]</li>
2229
     * </ul>
2230
     *
2231
     * @param array the array to swap, may be {@code null}
2232
     * @param offset1 the index of the first element in the series to swap
2233
     * @param offset2 the index of the second element in the series to swap
2234
     * @param len the number of elements to swap starting with the given indices
2235
     * @since 3.5
2236
     */
2237
    public static void swap(final double[] array,  int offset1, int offset2, int len) {
2238 42 1. swap : changed conditional boundary → NOT_SCHEDULED
2. swap : changed conditional boundary → NOT_SCHEDULED
3. swap : negated conditional → NOT_SCHEDULED
4. swap : negated conditional → NOT_SCHEDULED
5. swap : negated conditional → NOT_SCHEDULED
6. swap : negated conditional → NOT_SCHEDULED
7. swap : changed conditional boundary → NOT_SCHEDULED
8. swap : changed conditional boundary → NOT_SCHEDULED
9. swap : negated conditional → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : negated conditional → NOT_SCHEDULED
12. swap : negated conditional → NOT_SCHEDULED
13. swap : changed conditional boundary → NOT_SCHEDULED
14. swap : changed conditional boundary → NOT_SCHEDULED
15. swap : negated conditional → NOT_SCHEDULED
16. swap : negated conditional → NOT_SCHEDULED
17. swap : negated conditional → NOT_SCHEDULED
18. swap : negated conditional → NOT_SCHEDULED
19. swap : changed conditional boundary → NOT_SCHEDULED
20. swap : changed conditional boundary → NOT_SCHEDULED
21. swap : negated conditional → NOT_SCHEDULED
22. swap : negated conditional → NOT_SCHEDULED
23. swap : negated conditional → NOT_SCHEDULED
24. swap : negated conditional → NOT_SCHEDULED
25. swap : changed conditional boundary → NOT_SCHEDULED
26. swap : changed conditional boundary → NOT_SCHEDULED
27. swap : negated conditional → NOT_SCHEDULED
28. swap : negated conditional → NOT_SCHEDULED
29. swap : negated conditional → NOT_SCHEDULED
30. swap : negated conditional → NOT_SCHEDULED
31. swap : changed conditional boundary → NOT_SCHEDULED
32. swap : changed conditional boundary → NOT_SCHEDULED
33. swap : negated conditional → NOT_SCHEDULED
34. swap : negated conditional → NOT_SCHEDULED
35. swap : negated conditional → NOT_SCHEDULED
36. swap : negated conditional → NOT_SCHEDULED
37. swap : changed conditional boundary → NOT_SCHEDULED
38. swap : changed conditional boundary → NOT_SCHEDULED
39. swap : negated conditional → NOT_SCHEDULED
40. swap : negated conditional → NOT_SCHEDULED
41. swap : negated conditional → NOT_SCHEDULED
42. swap : negated conditional → NOT_SCHEDULED
        if (array == null || array.length == 0 || offset1 >= array.length || offset2 >= array.length) {
2239
            return;
2240
        }
2241 14 1. swap : changed conditional boundary → NOT_SCHEDULED
2. swap : negated conditional → NOT_SCHEDULED
3. swap : changed conditional boundary → NOT_SCHEDULED
4. swap : negated conditional → NOT_SCHEDULED
5. swap : changed conditional boundary → NOT_SCHEDULED
6. swap : negated conditional → NOT_SCHEDULED
7. swap : changed conditional boundary → NOT_SCHEDULED
8. swap : negated conditional → NOT_SCHEDULED
9. swap : changed conditional boundary → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : changed conditional boundary → NOT_SCHEDULED
12. swap : negated conditional → NOT_SCHEDULED
13. swap : changed conditional boundary → NOT_SCHEDULED
14. swap : negated conditional → NOT_SCHEDULED
        if (offset1 < 0) {
2242
            offset1 = 0;
2243
        }
2244 14 1. swap : changed conditional boundary → NOT_SCHEDULED
2. swap : negated conditional → NOT_SCHEDULED
3. swap : changed conditional boundary → NOT_SCHEDULED
4. swap : negated conditional → NOT_SCHEDULED
5. swap : changed conditional boundary → NOT_SCHEDULED
6. swap : negated conditional → NOT_SCHEDULED
7. swap : changed conditional boundary → NOT_SCHEDULED
8. swap : negated conditional → NOT_SCHEDULED
9. swap : changed conditional boundary → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : changed conditional boundary → NOT_SCHEDULED
12. swap : negated conditional → NOT_SCHEDULED
13. swap : changed conditional boundary → NOT_SCHEDULED
14. swap : negated conditional → NOT_SCHEDULED
        if (offset2 < 0) {
2245
            offset2 = 0;
2246
        }
2247 14 1. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
2. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
3. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
4. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
5. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
6. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
7. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
8. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
9. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
10. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
11. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
12. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
13. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
14. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
        len = Math.min(Math.min(len, array.length - offset1), array.length - offset2);
2248 35 1. swap : changed conditional boundary → NOT_SCHEDULED
2. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
3. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
4. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
5. swap : negated conditional → NOT_SCHEDULED
6. swap : changed conditional boundary → NOT_SCHEDULED
7. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
8. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
9. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : changed conditional boundary → NOT_SCHEDULED
12. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
13. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
14. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
15. swap : negated conditional → NOT_SCHEDULED
16. swap : changed conditional boundary → NOT_SCHEDULED
17. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
18. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
19. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
20. swap : negated conditional → NOT_SCHEDULED
21. swap : changed conditional boundary → NOT_SCHEDULED
22. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
23. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
24. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
25. swap : negated conditional → NOT_SCHEDULED
26. swap : changed conditional boundary → NOT_SCHEDULED
27. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
28. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
29. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
30. swap : negated conditional → NOT_SCHEDULED
31. swap : changed conditional boundary → NOT_SCHEDULED
32. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
33. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
34. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
35. swap : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < len; i++, offset1++, offset2++) {
2249
            double aux = array[offset1];
2250
            array[offset1] = array[offset2];
2251
            array[offset2] = aux;
2252
        }
2253
    }
2254
2255
    /**
2256
     * Swaps a series of elements in the given float array.
2257
     *
2258
     * <p>This method does nothing for a {@code null} or empty input array or
2259
     * for overflow indices. Negative indices are promoted to 0(zero). If any
2260
     * of the sub-arrays to swap falls outside of the given array, then the
2261
     * swap is stopped at the end of the array and as many as possible elements
2262
     * are swapped.</p>
2263
     *
2264
     * Examples:
2265
     * <ul>
2266
     *     <li>ArrayUtils.swap([1, 2, 3, 4], 0, 2, 1) -&gt; [3, 2, 1, 4]</li>
2267
     *     <li>ArrayUtils.swap([1, 2, 3, 4], 0, 0, 1) -&gt; [1, 2, 3, 4]</li>
2268
     *     <li>ArrayUtils.swap([1, 2, 3, 4], 2, 0, 2) -&gt; [3, 4, 1, 2]</li>
2269
     *     <li>ArrayUtils.swap([1, 2, 3, 4], -3, 2, 2) -&gt; [3, 4, 1, 2]</li>
2270
     *     <li>ArrayUtils.swap([1, 2, 3, 4], 0, 3, 3) -&gt; [4, 2, 3, 1]</li>
2271
     * </ul>
2272
     *
2273
     * @param array the array to swap, may be {@code null}
2274
     * @param offset1 the index of the first element in the series to swap
2275
     * @param offset2 the index of the second element in the series to swap
2276
     * @param len the number of elements to swap starting with the given indices
2277
     * @since 3.5
2278
     */
2279
    public static void swap(final float[] array, int offset1, int offset2, int len) {
2280 42 1. swap : changed conditional boundary → NOT_SCHEDULED
2. swap : changed conditional boundary → NOT_SCHEDULED
3. swap : negated conditional → NOT_SCHEDULED
4. swap : negated conditional → NOT_SCHEDULED
5. swap : negated conditional → NOT_SCHEDULED
6. swap : negated conditional → NOT_SCHEDULED
7. swap : changed conditional boundary → NOT_SCHEDULED
8. swap : changed conditional boundary → NOT_SCHEDULED
9. swap : negated conditional → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : negated conditional → NOT_SCHEDULED
12. swap : negated conditional → NOT_SCHEDULED
13. swap : changed conditional boundary → NOT_SCHEDULED
14. swap : changed conditional boundary → NOT_SCHEDULED
15. swap : negated conditional → NOT_SCHEDULED
16. swap : negated conditional → NOT_SCHEDULED
17. swap : negated conditional → NOT_SCHEDULED
18. swap : negated conditional → NOT_SCHEDULED
19. swap : changed conditional boundary → NOT_SCHEDULED
20. swap : changed conditional boundary → NOT_SCHEDULED
21. swap : negated conditional → NOT_SCHEDULED
22. swap : negated conditional → NOT_SCHEDULED
23. swap : negated conditional → NOT_SCHEDULED
24. swap : negated conditional → NOT_SCHEDULED
25. swap : changed conditional boundary → NOT_SCHEDULED
26. swap : changed conditional boundary → NOT_SCHEDULED
27. swap : negated conditional → NOT_SCHEDULED
28. swap : negated conditional → NOT_SCHEDULED
29. swap : negated conditional → NOT_SCHEDULED
30. swap : negated conditional → NOT_SCHEDULED
31. swap : changed conditional boundary → NOT_SCHEDULED
32. swap : changed conditional boundary → NOT_SCHEDULED
33. swap : negated conditional → NOT_SCHEDULED
34. swap : negated conditional → NOT_SCHEDULED
35. swap : negated conditional → NOT_SCHEDULED
36. swap : negated conditional → NOT_SCHEDULED
37. swap : changed conditional boundary → NOT_SCHEDULED
38. swap : changed conditional boundary → NOT_SCHEDULED
39. swap : negated conditional → NOT_SCHEDULED
40. swap : negated conditional → NOT_SCHEDULED
41. swap : negated conditional → NOT_SCHEDULED
42. swap : negated conditional → NOT_SCHEDULED
        if (array == null || array.length == 0 || offset1 >= array.length || offset2 >= array.length) {
2281
            return;
2282
        }
2283 14 1. swap : changed conditional boundary → NOT_SCHEDULED
2. swap : negated conditional → NOT_SCHEDULED
3. swap : changed conditional boundary → NOT_SCHEDULED
4. swap : negated conditional → NOT_SCHEDULED
5. swap : changed conditional boundary → NOT_SCHEDULED
6. swap : negated conditional → NOT_SCHEDULED
7. swap : changed conditional boundary → NOT_SCHEDULED
8. swap : negated conditional → NOT_SCHEDULED
9. swap : changed conditional boundary → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : changed conditional boundary → NOT_SCHEDULED
12. swap : negated conditional → NOT_SCHEDULED
13. swap : changed conditional boundary → NOT_SCHEDULED
14. swap : negated conditional → NOT_SCHEDULED
        if (offset1 < 0) {
2284
            offset1 = 0;
2285
        }
2286 14 1. swap : changed conditional boundary → NOT_SCHEDULED
2. swap : negated conditional → NOT_SCHEDULED
3. swap : changed conditional boundary → NOT_SCHEDULED
4. swap : negated conditional → NOT_SCHEDULED
5. swap : changed conditional boundary → NOT_SCHEDULED
6. swap : negated conditional → NOT_SCHEDULED
7. swap : changed conditional boundary → NOT_SCHEDULED
8. swap : negated conditional → NOT_SCHEDULED
9. swap : changed conditional boundary → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : changed conditional boundary → NOT_SCHEDULED
12. swap : negated conditional → NOT_SCHEDULED
13. swap : changed conditional boundary → NOT_SCHEDULED
14. swap : negated conditional → NOT_SCHEDULED
        if (offset2 < 0) {
2287
            offset2 = 0;
2288
        }
2289 14 1. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
2. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
3. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
4. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
5. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
6. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
7. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
8. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
9. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
10. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
11. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
12. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
13. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
14. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
        len = Math.min(Math.min(len, array.length - offset1), array.length - offset2);
2290 35 1. swap : changed conditional boundary → NOT_SCHEDULED
2. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
3. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
4. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
5. swap : negated conditional → NOT_SCHEDULED
6. swap : changed conditional boundary → NOT_SCHEDULED
7. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
8. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
9. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : changed conditional boundary → NOT_SCHEDULED
12. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
13. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
14. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
15. swap : negated conditional → NOT_SCHEDULED
16. swap : changed conditional boundary → NOT_SCHEDULED
17. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
18. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
19. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
20. swap : negated conditional → NOT_SCHEDULED
21. swap : changed conditional boundary → NOT_SCHEDULED
22. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
23. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
24. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
25. swap : negated conditional → NOT_SCHEDULED
26. swap : changed conditional boundary → NOT_SCHEDULED
27. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
28. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
29. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
30. swap : negated conditional → NOT_SCHEDULED
31. swap : changed conditional boundary → NOT_SCHEDULED
32. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
33. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
34. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
35. swap : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < len; i++, offset1++, offset2++) {
2291
            float aux = array[offset1];
2292
            array[offset1] = array[offset2];
2293
            array[offset2] = aux;
2294
        }
2295
2296
    }
2297
2298
    /**
2299
     * Swaps a series of elements in the given int array.
2300
     *
2301
     * <p>This method does nothing for a {@code null} or empty input array or
2302
     * for overflow indices. Negative indices are promoted to 0(zero). If any
2303
     * of the sub-arrays to swap falls outside of the given array, then the
2304
     * swap is stopped at the end of the array and as many as possible elements
2305
     * are swapped.</p>
2306
     *
2307
     * Examples:
2308
     * <ul>
2309
     *     <li>ArrayUtils.swap([1, 2, 3, 4], 0, 2, 1) -&gt; [3, 2, 1, 4]</li>
2310
     *     <li>ArrayUtils.swap([1, 2, 3, 4], 0, 0, 1) -&gt; [1, 2, 3, 4]</li>
2311
     *     <li>ArrayUtils.swap([1, 2, 3, 4], 2, 0, 2) -&gt; [3, 4, 1, 2]</li>
2312
     *     <li>ArrayUtils.swap([1, 2, 3, 4], -3, 2, 2) -&gt; [3, 4, 1, 2]</li>
2313
     *     <li>ArrayUtils.swap([1, 2, 3, 4], 0, 3, 3) -&gt; [4, 2, 3, 1]</li>
2314
     * </ul>
2315
     *
2316
     * @param array the array to swap, may be {@code null}
2317
     * @param offset1 the index of the first element in the series to swap
2318
     * @param offset2 the index of the second element in the series to swap
2319
     * @param len the number of elements to swap starting with the given indices
2320
     * @since 3.5
2321
     */
2322
    public static void swap(final int[] array,  int offset1, int offset2, int len) {
2323 42 1. swap : changed conditional boundary → NOT_SCHEDULED
2. swap : changed conditional boundary → NOT_SCHEDULED
3. swap : negated conditional → NOT_SCHEDULED
4. swap : negated conditional → NOT_SCHEDULED
5. swap : negated conditional → NOT_SCHEDULED
6. swap : negated conditional → NOT_SCHEDULED
7. swap : changed conditional boundary → NOT_SCHEDULED
8. swap : changed conditional boundary → NOT_SCHEDULED
9. swap : negated conditional → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : negated conditional → NOT_SCHEDULED
12. swap : negated conditional → NOT_SCHEDULED
13. swap : changed conditional boundary → NOT_SCHEDULED
14. swap : changed conditional boundary → NOT_SCHEDULED
15. swap : negated conditional → NOT_SCHEDULED
16. swap : negated conditional → NOT_SCHEDULED
17. swap : negated conditional → NOT_SCHEDULED
18. swap : negated conditional → NOT_SCHEDULED
19. swap : changed conditional boundary → NOT_SCHEDULED
20. swap : changed conditional boundary → NOT_SCHEDULED
21. swap : negated conditional → NOT_SCHEDULED
22. swap : negated conditional → NOT_SCHEDULED
23. swap : negated conditional → NOT_SCHEDULED
24. swap : negated conditional → NOT_SCHEDULED
25. swap : changed conditional boundary → NOT_SCHEDULED
26. swap : changed conditional boundary → NOT_SCHEDULED
27. swap : negated conditional → NOT_SCHEDULED
28. swap : negated conditional → NOT_SCHEDULED
29. swap : negated conditional → NOT_SCHEDULED
30. swap : negated conditional → NOT_SCHEDULED
31. swap : changed conditional boundary → NOT_SCHEDULED
32. swap : changed conditional boundary → NOT_SCHEDULED
33. swap : negated conditional → NOT_SCHEDULED
34. swap : negated conditional → NOT_SCHEDULED
35. swap : negated conditional → NOT_SCHEDULED
36. swap : negated conditional → NOT_SCHEDULED
37. swap : changed conditional boundary → NOT_SCHEDULED
38. swap : changed conditional boundary → NOT_SCHEDULED
39. swap : negated conditional → NOT_SCHEDULED
40. swap : negated conditional → NOT_SCHEDULED
41. swap : negated conditional → NOT_SCHEDULED
42. swap : negated conditional → NOT_SCHEDULED
        if (array == null || array.length == 0 || offset1 >= array.length || offset2 >= array.length) {
2324
            return;
2325
        }
2326 14 1. swap : changed conditional boundary → NOT_SCHEDULED
2. swap : negated conditional → NOT_SCHEDULED
3. swap : changed conditional boundary → NOT_SCHEDULED
4. swap : negated conditional → NOT_SCHEDULED
5. swap : changed conditional boundary → NOT_SCHEDULED
6. swap : negated conditional → NOT_SCHEDULED
7. swap : changed conditional boundary → NOT_SCHEDULED
8. swap : negated conditional → NOT_SCHEDULED
9. swap : changed conditional boundary → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : changed conditional boundary → NOT_SCHEDULED
12. swap : negated conditional → NOT_SCHEDULED
13. swap : changed conditional boundary → NOT_SCHEDULED
14. swap : negated conditional → NOT_SCHEDULED
        if (offset1 < 0) {
2327
            offset1 = 0;
2328
        }
2329 14 1. swap : changed conditional boundary → NOT_SCHEDULED
2. swap : negated conditional → NOT_SCHEDULED
3. swap : changed conditional boundary → NOT_SCHEDULED
4. swap : negated conditional → NOT_SCHEDULED
5. swap : changed conditional boundary → NOT_SCHEDULED
6. swap : negated conditional → NOT_SCHEDULED
7. swap : changed conditional boundary → NOT_SCHEDULED
8. swap : negated conditional → NOT_SCHEDULED
9. swap : changed conditional boundary → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : changed conditional boundary → NOT_SCHEDULED
12. swap : negated conditional → NOT_SCHEDULED
13. swap : changed conditional boundary → NOT_SCHEDULED
14. swap : negated conditional → NOT_SCHEDULED
        if (offset2 < 0) {
2330
            offset2 = 0;
2331
        }
2332 14 1. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
2. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
3. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
4. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
5. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
6. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
7. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
8. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
9. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
10. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
11. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
12. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
13. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
14. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
        len = Math.min(Math.min(len, array.length - offset1), array.length - offset2);
2333 35 1. swap : changed conditional boundary → NOT_SCHEDULED
2. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
3. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
4. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
5. swap : negated conditional → NOT_SCHEDULED
6. swap : changed conditional boundary → NOT_SCHEDULED
7. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
8. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
9. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : changed conditional boundary → NOT_SCHEDULED
12. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
13. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
14. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
15. swap : negated conditional → NOT_SCHEDULED
16. swap : changed conditional boundary → NOT_SCHEDULED
17. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
18. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
19. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
20. swap : negated conditional → NOT_SCHEDULED
21. swap : changed conditional boundary → NOT_SCHEDULED
22. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
23. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
24. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
25. swap : negated conditional → NOT_SCHEDULED
26. swap : changed conditional boundary → NOT_SCHEDULED
27. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
28. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
29. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
30. swap : negated conditional → NOT_SCHEDULED
31. swap : changed conditional boundary → NOT_SCHEDULED
32. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
33. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
34. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
35. swap : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < len; i++, offset1++, offset2++) {
2334
            int aux = array[offset1];
2335
            array[offset1] = array[offset2];
2336
            array[offset2] = aux;
2337
        }
2338
    }
2339
2340
    /**
2341
     * Swaps a series of elements in the given long array.
2342
     *
2343
     * <p>This method does nothing for a {@code null} or empty input array or
2344
     * for overflow indices. Negative indices are promoted to 0(zero). If any
2345
     * of the sub-arrays to swap falls outside of the given array, then the
2346
     * swap is stopped at the end of the array and as many as possible elements
2347
     * are swapped.</p>
2348
     *
2349
     * Examples:
2350
     * <ul>
2351
     *     <li>ArrayUtils.swap([1, 2, 3, 4], 0, 2, 1) -&gt; [3, 2, 1, 4]</li>
2352
     *     <li>ArrayUtils.swap([1, 2, 3, 4], 0, 0, 1) -&gt; [1, 2, 3, 4]</li>
2353
     *     <li>ArrayUtils.swap([1, 2, 3, 4], 2, 0, 2) -&gt; [3, 4, 1, 2]</li>
2354
     *     <li>ArrayUtils.swap([1, 2, 3, 4], -3, 2, 2) -&gt; [3, 4, 1, 2]</li>
2355
     *     <li>ArrayUtils.swap([1, 2, 3, 4], 0, 3, 3) -&gt; [4, 2, 3, 1]</li>
2356
     * </ul>
2357
     *
2358
     * @param array the array to swap, may be {@code null}
2359
     * @param offset1 the index of the first element in the series to swap
2360
     * @param offset2 the index of the second element in the series to swap
2361
     * @param len the number of elements to swap starting with the given indices
2362
     * @since 3.5
2363
     */
2364
    public static void swap(final long[] array,  int offset1, int offset2, int len) {
2365 42 1. swap : changed conditional boundary → NOT_SCHEDULED
2. swap : changed conditional boundary → NOT_SCHEDULED
3. swap : negated conditional → NOT_SCHEDULED
4. swap : negated conditional → NOT_SCHEDULED
5. swap : negated conditional → NOT_SCHEDULED
6. swap : negated conditional → NOT_SCHEDULED
7. swap : changed conditional boundary → NOT_SCHEDULED
8. swap : changed conditional boundary → NOT_SCHEDULED
9. swap : negated conditional → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : negated conditional → NOT_SCHEDULED
12. swap : negated conditional → NOT_SCHEDULED
13. swap : changed conditional boundary → NOT_SCHEDULED
14. swap : changed conditional boundary → NOT_SCHEDULED
15. swap : negated conditional → NOT_SCHEDULED
16. swap : negated conditional → NOT_SCHEDULED
17. swap : negated conditional → NOT_SCHEDULED
18. swap : negated conditional → NOT_SCHEDULED
19. swap : changed conditional boundary → NOT_SCHEDULED
20. swap : changed conditional boundary → NOT_SCHEDULED
21. swap : negated conditional → NOT_SCHEDULED
22. swap : negated conditional → NOT_SCHEDULED
23. swap : negated conditional → NOT_SCHEDULED
24. swap : negated conditional → NOT_SCHEDULED
25. swap : changed conditional boundary → NOT_SCHEDULED
26. swap : changed conditional boundary → NOT_SCHEDULED
27. swap : negated conditional → NOT_SCHEDULED
28. swap : negated conditional → NOT_SCHEDULED
29. swap : negated conditional → NOT_SCHEDULED
30. swap : negated conditional → NOT_SCHEDULED
31. swap : changed conditional boundary → NOT_SCHEDULED
32. swap : changed conditional boundary → NOT_SCHEDULED
33. swap : negated conditional → NOT_SCHEDULED
34. swap : negated conditional → NOT_SCHEDULED
35. swap : negated conditional → NOT_SCHEDULED
36. swap : negated conditional → NOT_SCHEDULED
37. swap : changed conditional boundary → NOT_SCHEDULED
38. swap : changed conditional boundary → NOT_SCHEDULED
39. swap : negated conditional → NOT_SCHEDULED
40. swap : negated conditional → NOT_SCHEDULED
41. swap : negated conditional → NOT_SCHEDULED
42. swap : negated conditional → NOT_SCHEDULED
        if (array == null || array.length == 0 || offset1 >= array.length || offset2 >= array.length) {
2366
            return;
2367
        }
2368 14 1. swap : changed conditional boundary → NOT_SCHEDULED
2. swap : negated conditional → NOT_SCHEDULED
3. swap : changed conditional boundary → NOT_SCHEDULED
4. swap : negated conditional → NOT_SCHEDULED
5. swap : changed conditional boundary → NOT_SCHEDULED
6. swap : negated conditional → NOT_SCHEDULED
7. swap : changed conditional boundary → NOT_SCHEDULED
8. swap : negated conditional → NOT_SCHEDULED
9. swap : changed conditional boundary → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : changed conditional boundary → NOT_SCHEDULED
12. swap : negated conditional → NOT_SCHEDULED
13. swap : changed conditional boundary → NOT_SCHEDULED
14. swap : negated conditional → NOT_SCHEDULED
        if (offset1 < 0) {
2369
            offset1 = 0;
2370
        }
2371 14 1. swap : changed conditional boundary → NOT_SCHEDULED
2. swap : negated conditional → NOT_SCHEDULED
3. swap : changed conditional boundary → NOT_SCHEDULED
4. swap : negated conditional → NOT_SCHEDULED
5. swap : changed conditional boundary → NOT_SCHEDULED
6. swap : negated conditional → NOT_SCHEDULED
7. swap : changed conditional boundary → NOT_SCHEDULED
8. swap : negated conditional → NOT_SCHEDULED
9. swap : changed conditional boundary → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : changed conditional boundary → NOT_SCHEDULED
12. swap : negated conditional → NOT_SCHEDULED
13. swap : changed conditional boundary → NOT_SCHEDULED
14. swap : negated conditional → NOT_SCHEDULED
        if (offset2 < 0) {
2372
            offset2 = 0;
2373
        }
2374 14 1. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
2. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
3. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
4. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
5. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
6. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
7. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
8. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
9. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
10. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
11. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
12. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
13. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
14. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
        len = Math.min(Math.min(len, array.length - offset1), array.length - offset2);
2375 35 1. swap : changed conditional boundary → NOT_SCHEDULED
2. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
3. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
4. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
5. swap : negated conditional → NOT_SCHEDULED
6. swap : changed conditional boundary → NOT_SCHEDULED
7. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
8. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
9. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : changed conditional boundary → NOT_SCHEDULED
12. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
13. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
14. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
15. swap : negated conditional → NOT_SCHEDULED
16. swap : changed conditional boundary → NOT_SCHEDULED
17. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
18. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
19. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
20. swap : negated conditional → NOT_SCHEDULED
21. swap : changed conditional boundary → NOT_SCHEDULED
22. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
23. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
24. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
25. swap : negated conditional → NOT_SCHEDULED
26. swap : changed conditional boundary → NOT_SCHEDULED
27. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
28. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
29. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
30. swap : negated conditional → NOT_SCHEDULED
31. swap : changed conditional boundary → NOT_SCHEDULED
32. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
33. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
34. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
35. swap : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < len; i++, offset1++, offset2++) {
2376
            long aux = array[offset1];
2377
            array[offset1] = array[offset2];
2378
            array[offset2] = aux;
2379
        }
2380
    }
2381
2382
    /**
2383
     * Swaps a series of elements in the given array.
2384
     *
2385
     * <p>This method does nothing for a {@code null} or empty input array or
2386
     * for overflow indices. Negative indices are promoted to 0(zero). If any
2387
     * of the sub-arrays to swap falls outside of the given array, then the
2388
     * swap is stopped at the end of the array and as many as possible elements
2389
     * are swapped.</p>
2390
     *
2391
     * Examples:
2392
     * <ul>
2393
     *     <li>ArrayUtils.swap(["1", "2", "3", "4"], 0, 2, 1) -&gt; ["3", "2", "1", "4"]</li>
2394
     *     <li>ArrayUtils.swap(["1", "2", "3", "4"], 0, 0, 1) -&gt; ["1", "2", "3", "4"]</li>
2395
     *     <li>ArrayUtils.swap(["1", "2", "3", "4"], 2, 0, 2) -&gt; ["3", "4", "1", "2"]</li>
2396
     *     <li>ArrayUtils.swap(["1", "2", "3", "4"], -3, 2, 2) -&gt; ["3", "4", "1", "2"]</li>
2397
     *     <li>ArrayUtils.swap(["1", "2", "3", "4"], 0, 3, 3) -&gt; ["4", "2", "3", "1"]</li>
2398
     * </ul>
2399
     *
2400
     * @param array the array to swap, may be {@code null}
2401
     * @param offset1 the index of the first element in the series to swap
2402
     * @param offset2 the index of the second element in the series to swap
2403
     * @param len the number of elements to swap starting with the given indices
2404
     * @since 3.5
2405
     */
2406
    public static void swap(final Object[] array,  int offset1, int offset2, int len) {
2407 42 1. swap : changed conditional boundary → NOT_SCHEDULED
2. swap : changed conditional boundary → NOT_SCHEDULED
3. swap : negated conditional → NOT_SCHEDULED
4. swap : negated conditional → NOT_SCHEDULED
5. swap : negated conditional → NOT_SCHEDULED
6. swap : negated conditional → NOT_SCHEDULED
7. swap : changed conditional boundary → NOT_SCHEDULED
8. swap : changed conditional boundary → NOT_SCHEDULED
9. swap : negated conditional → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : negated conditional → NOT_SCHEDULED
12. swap : negated conditional → NOT_SCHEDULED
13. swap : changed conditional boundary → NOT_SCHEDULED
14. swap : changed conditional boundary → NOT_SCHEDULED
15. swap : negated conditional → NOT_SCHEDULED
16. swap : negated conditional → NOT_SCHEDULED
17. swap : negated conditional → NOT_SCHEDULED
18. swap : negated conditional → NOT_SCHEDULED
19. swap : changed conditional boundary → NOT_SCHEDULED
20. swap : changed conditional boundary → NOT_SCHEDULED
21. swap : negated conditional → NOT_SCHEDULED
22. swap : negated conditional → NOT_SCHEDULED
23. swap : negated conditional → NOT_SCHEDULED
24. swap : negated conditional → NOT_SCHEDULED
25. swap : changed conditional boundary → NOT_SCHEDULED
26. swap : changed conditional boundary → NOT_SCHEDULED
27. swap : negated conditional → NOT_SCHEDULED
28. swap : negated conditional → NOT_SCHEDULED
29. swap : negated conditional → NOT_SCHEDULED
30. swap : negated conditional → NOT_SCHEDULED
31. swap : changed conditional boundary → NOT_SCHEDULED
32. swap : changed conditional boundary → NOT_SCHEDULED
33. swap : negated conditional → NOT_SCHEDULED
34. swap : negated conditional → NOT_SCHEDULED
35. swap : negated conditional → NOT_SCHEDULED
36. swap : negated conditional → NOT_SCHEDULED
37. swap : changed conditional boundary → NOT_SCHEDULED
38. swap : changed conditional boundary → NOT_SCHEDULED
39. swap : negated conditional → NOT_SCHEDULED
40. swap : negated conditional → NOT_SCHEDULED
41. swap : negated conditional → NOT_SCHEDULED
42. swap : negated conditional → NOT_SCHEDULED
        if (array == null || array.length == 0 || offset1 >= array.length || offset2 >= array.length) {
2408
            return;
2409
        }
2410 14 1. swap : changed conditional boundary → NOT_SCHEDULED
2. swap : negated conditional → NOT_SCHEDULED
3. swap : changed conditional boundary → NOT_SCHEDULED
4. swap : negated conditional → NOT_SCHEDULED
5. swap : changed conditional boundary → NOT_SCHEDULED
6. swap : negated conditional → NOT_SCHEDULED
7. swap : changed conditional boundary → NOT_SCHEDULED
8. swap : negated conditional → NOT_SCHEDULED
9. swap : changed conditional boundary → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : changed conditional boundary → NOT_SCHEDULED
12. swap : negated conditional → NOT_SCHEDULED
13. swap : changed conditional boundary → NOT_SCHEDULED
14. swap : negated conditional → NOT_SCHEDULED
        if (offset1 < 0) {
2411
            offset1 = 0;
2412
        }
2413 14 1. swap : changed conditional boundary → NOT_SCHEDULED
2. swap : negated conditional → NOT_SCHEDULED
3. swap : changed conditional boundary → NOT_SCHEDULED
4. swap : negated conditional → NOT_SCHEDULED
5. swap : changed conditional boundary → NOT_SCHEDULED
6. swap : negated conditional → NOT_SCHEDULED
7. swap : changed conditional boundary → NOT_SCHEDULED
8. swap : negated conditional → NOT_SCHEDULED
9. swap : changed conditional boundary → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : changed conditional boundary → NOT_SCHEDULED
12. swap : negated conditional → NOT_SCHEDULED
13. swap : changed conditional boundary → NOT_SCHEDULED
14. swap : negated conditional → NOT_SCHEDULED
        if (offset2 < 0) {
2414
            offset2 = 0;
2415
        }
2416 14 1. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
2. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
3. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
4. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
5. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
6. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
7. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
8. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
9. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
10. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
11. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
12. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
13. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
14. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
        len = Math.min(Math.min(len, array.length - offset1), array.length - offset2);
2417 35 1. swap : changed conditional boundary → NOT_SCHEDULED
2. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
3. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
4. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
5. swap : negated conditional → NOT_SCHEDULED
6. swap : changed conditional boundary → NOT_SCHEDULED
7. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
8. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
9. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : changed conditional boundary → NOT_SCHEDULED
12. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
13. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
14. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
15. swap : negated conditional → NOT_SCHEDULED
16. swap : changed conditional boundary → NOT_SCHEDULED
17. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
18. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
19. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
20. swap : negated conditional → NOT_SCHEDULED
21. swap : changed conditional boundary → NOT_SCHEDULED
22. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
23. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
24. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
25. swap : negated conditional → NOT_SCHEDULED
26. swap : changed conditional boundary → NOT_SCHEDULED
27. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
28. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
29. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
30. swap : negated conditional → NOT_SCHEDULED
31. swap : changed conditional boundary → NOT_SCHEDULED
32. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
33. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
34. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
35. swap : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < len; i++, offset1++, offset2++) {
2418
            Object aux = array[offset1];
2419
            array[offset1] = array[offset2];
2420
            array[offset2] = aux;
2421
        }
2422
    }
2423
2424
   /**
2425
    * Swaps a series of elements in the given short array.
2426
    *
2427
    * <p>This method does nothing for a {@code null} or empty input array or
2428
    * for overflow indices. Negative indices are promoted to 0(zero). If any
2429
    * of the sub-arrays to swap falls outside of the given array, then the
2430
    * swap is stopped at the end of the array and as many as possible elements
2431
    * are swapped.</p>
2432
    *
2433
    * Examples:
2434
    * <ul>
2435
    *     <li>ArrayUtils.swap([1, 2, 3, 4], 0, 2, 1) -&gt; [3, 2, 1, 4]</li>
2436
    *     <li>ArrayUtils.swap([1, 2, 3, 4], 0, 0, 1) -&gt; [1, 2, 3, 4]</li>
2437
    *     <li>ArrayUtils.swap([1, 2, 3, 4], 2, 0, 2) -&gt; [3, 4, 1, 2]</li>
2438
    *     <li>ArrayUtils.swap([1, 2, 3, 4], -3, 2, 2) -&gt; [3, 4, 1, 2]</li>
2439
    *     <li>ArrayUtils.swap([1, 2, 3, 4], 0, 3, 3) -&gt; [4, 2, 3, 1]</li>
2440
    * </ul>
2441
    *
2442
    * @param array the array to swap, may be {@code null}
2443
    * @param offset1 the index of the first element in the series to swap
2444
    * @param offset2 the index of the second element in the series to swap
2445
    * @param len the number of elements to swap starting with the given indices
2446
    * @since 3.5
2447
    */
2448
    public static void swap(final short[] array,  int offset1, int offset2, int len) {
2449 42 1. swap : changed conditional boundary → NOT_SCHEDULED
2. swap : changed conditional boundary → NOT_SCHEDULED
3. swap : negated conditional → NOT_SCHEDULED
4. swap : negated conditional → NOT_SCHEDULED
5. swap : negated conditional → NOT_SCHEDULED
6. swap : negated conditional → NOT_SCHEDULED
7. swap : changed conditional boundary → NOT_SCHEDULED
8. swap : changed conditional boundary → NOT_SCHEDULED
9. swap : negated conditional → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : negated conditional → NOT_SCHEDULED
12. swap : negated conditional → NOT_SCHEDULED
13. swap : changed conditional boundary → NOT_SCHEDULED
14. swap : changed conditional boundary → NOT_SCHEDULED
15. swap : negated conditional → NOT_SCHEDULED
16. swap : negated conditional → NOT_SCHEDULED
17. swap : negated conditional → NOT_SCHEDULED
18. swap : negated conditional → NOT_SCHEDULED
19. swap : changed conditional boundary → NOT_SCHEDULED
20. swap : changed conditional boundary → NOT_SCHEDULED
21. swap : negated conditional → NOT_SCHEDULED
22. swap : negated conditional → NOT_SCHEDULED
23. swap : negated conditional → NOT_SCHEDULED
24. swap : negated conditional → NOT_SCHEDULED
25. swap : changed conditional boundary → NOT_SCHEDULED
26. swap : changed conditional boundary → NOT_SCHEDULED
27. swap : negated conditional → NOT_SCHEDULED
28. swap : negated conditional → NOT_SCHEDULED
29. swap : negated conditional → NOT_SCHEDULED
30. swap : negated conditional → NOT_SCHEDULED
31. swap : changed conditional boundary → NOT_SCHEDULED
32. swap : changed conditional boundary → NOT_SCHEDULED
33. swap : negated conditional → NOT_SCHEDULED
34. swap : negated conditional → NOT_SCHEDULED
35. swap : negated conditional → NOT_SCHEDULED
36. swap : negated conditional → NOT_SCHEDULED
37. swap : changed conditional boundary → NOT_SCHEDULED
38. swap : changed conditional boundary → NOT_SCHEDULED
39. swap : negated conditional → NOT_SCHEDULED
40. swap : negated conditional → NOT_SCHEDULED
41. swap : negated conditional → NOT_SCHEDULED
42. swap : negated conditional → NOT_SCHEDULED
        if (array == null || array.length == 0 || offset1 >= array.length || offset2 >= array.length) {
2450
            return;
2451
        }
2452 14 1. swap : changed conditional boundary → NOT_SCHEDULED
2. swap : negated conditional → NOT_SCHEDULED
3. swap : changed conditional boundary → NOT_SCHEDULED
4. swap : negated conditional → NOT_SCHEDULED
5. swap : changed conditional boundary → NOT_SCHEDULED
6. swap : negated conditional → NOT_SCHEDULED
7. swap : changed conditional boundary → NOT_SCHEDULED
8. swap : negated conditional → NOT_SCHEDULED
9. swap : changed conditional boundary → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : changed conditional boundary → NOT_SCHEDULED
12. swap : negated conditional → NOT_SCHEDULED
13. swap : changed conditional boundary → NOT_SCHEDULED
14. swap : negated conditional → NOT_SCHEDULED
        if (offset1 < 0) {
2453
            offset1 = 0;
2454
        }
2455 14 1. swap : changed conditional boundary → NOT_SCHEDULED
2. swap : negated conditional → NOT_SCHEDULED
3. swap : changed conditional boundary → NOT_SCHEDULED
4. swap : negated conditional → NOT_SCHEDULED
5. swap : changed conditional boundary → NOT_SCHEDULED
6. swap : negated conditional → NOT_SCHEDULED
7. swap : changed conditional boundary → NOT_SCHEDULED
8. swap : negated conditional → NOT_SCHEDULED
9. swap : changed conditional boundary → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : changed conditional boundary → NOT_SCHEDULED
12. swap : negated conditional → NOT_SCHEDULED
13. swap : changed conditional boundary → NOT_SCHEDULED
14. swap : negated conditional → NOT_SCHEDULED
        if (offset2 < 0) {
2456
            offset2 = 0;
2457
        }
2458 7 1. swap : negated conditional → NOT_SCHEDULED
2. swap : negated conditional → NOT_SCHEDULED
3. swap : negated conditional → NOT_SCHEDULED
4. swap : negated conditional → NOT_SCHEDULED
5. swap : negated conditional → NOT_SCHEDULED
6. swap : negated conditional → NOT_SCHEDULED
7. swap : negated conditional → NOT_SCHEDULED
        if (offset1 == offset2) {
2459
            return;
2460
        }
2461 14 1. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
2. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
3. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
4. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
5. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
6. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
7. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
8. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
9. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
10. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
11. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
12. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
13. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
14. swap : Replaced integer subtraction with addition → NOT_SCHEDULED
        len = Math.min(Math.min(len, array.length - offset1), array.length - offset2);
2462 35 1. swap : changed conditional boundary → NOT_SCHEDULED
2. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
3. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
4. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
5. swap : negated conditional → NOT_SCHEDULED
6. swap : changed conditional boundary → NOT_SCHEDULED
7. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
8. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
9. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
10. swap : negated conditional → NOT_SCHEDULED
11. swap : changed conditional boundary → NOT_SCHEDULED
12. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
13. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
14. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
15. swap : negated conditional → NOT_SCHEDULED
16. swap : changed conditional boundary → NOT_SCHEDULED
17. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
18. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
19. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
20. swap : negated conditional → NOT_SCHEDULED
21. swap : changed conditional boundary → NOT_SCHEDULED
22. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
23. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
24. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
25. swap : negated conditional → NOT_SCHEDULED
26. swap : changed conditional boundary → NOT_SCHEDULED
27. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
28. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
29. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
30. swap : negated conditional → NOT_SCHEDULED
31. swap : changed conditional boundary → NOT_SCHEDULED
32. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
33. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
34. swap : Changed increment from 1 to -1 → NOT_SCHEDULED
35. swap : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < len; i++, offset1++, offset2++) {
2463
            short aux = array[offset1];
2464
            array[offset1] = array[offset2];
2465
            array[offset2] = aux;
2466
        }
2467
    }
2468
2469
    // Shift
2470
    //-----------------------------------------------------------------------
2471
    /**
2472
     * Shifts the order of the given array.
2473
     *
2474
     * <p>There is no special handling for multi-dimensional arrays. This method
2475
     * does nothing for {@code null} or empty input arrays.</p>
2476
     *
2477
     * @param array  the array to shift, may be {@code null}
2478
     * @param offset
2479
     *          The number of positions to rotate the elements.  If the offset is larger than the number of elements to
2480
     *          rotate, than the effective offset is modulo the number of elements to rotate.
2481
     * @since 3.5
2482
     */
2483
    public static void shift(final Object[] array, int offset) {
2484 7 1. shift : negated conditional → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : negated conditional → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : negated conditional → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : negated conditional → NOT_SCHEDULED
        if (array == null) {
2485
            return;
2486
        }
2487 7 1. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
2. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
3. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
4. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
5. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
7. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
        shift(array, 0, array.length, offset);
2488
    }
2489
2490
    /**
2491
     * Shifts the order of the given long array.
2492
     *
2493
     * <p>There is no special handling for multi-dimensional arrays. This method
2494
     * does nothing for {@code null} or empty input arrays.</p>
2495
     *
2496
     * @param array  the array to shift, may be {@code null}
2497
     * @param offset
2498
     *          The number of positions to rotate the elements.  If the offset is larger than the number of elements to
2499
     *          rotate, than the effective offset is modulo the number of elements to rotate.
2500
     * @since 3.5
2501
     */
2502
    public static void shift(final long[] array, int offset) {
2503 7 1. shift : negated conditional → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : negated conditional → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : negated conditional → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : negated conditional → NOT_SCHEDULED
        if (array == null) {
2504
            return;
2505
        }
2506 7 1. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
2. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
3. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
4. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
5. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
7. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
        shift(array, 0, array.length, offset);
2507
    }
2508
2509
    /**
2510
     * Shifts the order of the given int array.
2511
     *
2512
     * <p>There is no special handling for multi-dimensional arrays. This method
2513
     * does nothing for {@code null} or empty input arrays.</p>
2514
     *
2515
     * @param array  the array to shift, may be {@code null}
2516
     * @param offset
2517
     *          The number of positions to rotate the elements.  If the offset is larger than the number of elements to
2518
     *          rotate, than the effective offset is modulo the number of elements to rotate.
2519
     * @since 3.5
2520
     */
2521
    public static void shift(final int[] array, int offset) {
2522 7 1. shift : negated conditional → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : negated conditional → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : negated conditional → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : negated conditional → NOT_SCHEDULED
        if (array == null) {
2523
            return;
2524
        }
2525 7 1. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
2. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
3. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
4. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
5. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
7. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
        shift(array, 0, array.length, offset);
2526
    }
2527
2528
    /**
2529
     * Shifts the order of the given short array.
2530
     *
2531
     * <p>There is no special handling for multi-dimensional arrays. This method
2532
     * does nothing for {@code null} or empty input arrays.</p>
2533
     *
2534
     * @param array  the array to shift, may be {@code null}
2535
     * @param offset
2536
     *          The number of positions to rotate the elements.  If the offset is larger than the number of elements to
2537
     *          rotate, than the effective offset is modulo the number of elements to rotate.
2538
     * @since 3.5
2539
     */
2540
    public static void shift(final short[] array, int offset) {
2541 7 1. shift : negated conditional → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : negated conditional → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : negated conditional → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : negated conditional → NOT_SCHEDULED
        if (array == null) {
2542
            return;
2543
        }
2544 7 1. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
2. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
3. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
4. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
5. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
7. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
        shift(array, 0, array.length, offset);
2545
    }
2546
2547
    /**
2548
     * Shifts the order of the given char array.
2549
     *
2550
     * <p>There is no special handling for multi-dimensional arrays. This method
2551
     * does nothing for {@code null} or empty input arrays.</p>
2552
     *
2553
     * @param array  the array to shift, may be {@code null}
2554
     * @param offset
2555
     *          The number of positions to rotate the elements.  If the offset is larger than the number of elements to
2556
     *          rotate, than the effective offset is modulo the number of elements to rotate.
2557
     * @since 3.5
2558
     */
2559
    public static void shift(final char[] array, int offset) {
2560 7 1. shift : negated conditional → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : negated conditional → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : negated conditional → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : negated conditional → NOT_SCHEDULED
        if (array == null) {
2561
            return;
2562
        }
2563 7 1. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
2. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
3. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
4. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
5. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
7. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
        shift(array, 0, array.length, offset);
2564
    }
2565
2566
    /**
2567
     * Shifts the order of the given byte array.
2568
     *
2569
     * <p>There is no special handling for multi-dimensional arrays. This method
2570
     * does nothing for {@code null} or empty input arrays.</p>
2571
     *
2572
     * @param array  the array to shift, may be {@code null}
2573
     * @param offset
2574
     *          The number of positions to rotate the elements.  If the offset is larger than the number of elements to
2575
     *          rotate, than the effective offset is modulo the number of elements to rotate.
2576
     * @since 3.5
2577
     */
2578
    public static void shift(final byte[] array, int offset) {
2579 7 1. shift : negated conditional → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : negated conditional → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : negated conditional → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : negated conditional → NOT_SCHEDULED
        if (array == null) {
2580
            return;
2581
        }
2582 7 1. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
2. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
3. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
4. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
5. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
7. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
        shift(array, 0, array.length, offset);
2583
    }
2584
2585
    /**
2586
     * Shifts the order of the given double array.
2587
     *
2588
     * <p>There is no special handling for multi-dimensional arrays. This method
2589
     * does nothing for {@code null} or empty input arrays.</p>
2590
     *
2591
     * @param array  the array to shift, may be {@code null}
2592
     * @param offset
2593
     *          The number of positions to rotate the elements.  If the offset is larger than the number of elements to
2594
     *          rotate, than the effective offset is modulo the number of elements to rotate.
2595
     * @since 3.5
2596
     */
2597
    public static void shift(final double[] array, int offset) {
2598 7 1. shift : negated conditional → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : negated conditional → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : negated conditional → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : negated conditional → NOT_SCHEDULED
        if (array == null) {
2599
            return;
2600
        }
2601 7 1. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
2. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
3. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → KILLED
4. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → KILLED
5. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → KILLED
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → KILLED
7. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → KILLED
        shift(array, 0, array.length, offset);
2602
    }
2603
2604
    /**
2605
     * Shifts the order of the given float array.
2606
     *
2607
     * <p>There is no special handling for multi-dimensional arrays. This method
2608
     * does nothing for {@code null} or empty input arrays.</p>
2609
     *
2610
     * @param array  the array to shift, may be {@code null}
2611
     * @param offset
2612
     *          The number of positions to rotate the elements.  If the offset is larger than the number of elements to
2613
     *          rotate, than the effective offset is modulo the number of elements to rotate.
2614
     * @since 3.5
2615
     */
2616
    public static void shift(final float[] array, int offset) {
2617 7 1. shift : negated conditional → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : negated conditional → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : negated conditional → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : negated conditional → NOT_SCHEDULED
        if (array == null) {
2618
            return;
2619
        }
2620 7 1. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
2. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
3. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
4. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
5. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
7. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED
        shift(array, 0, array.length, offset);
2621
    }
2622
2623
    /**
2624
     * Shifts the order of the given boolean array.
2625
     *
2626
     * <p>There is no special handling for multi-dimensional arrays. This method
2627
     * does nothing for {@code null} or empty input arrays.</p>
2628
     *
2629
     * @param array  the array to shift, may be {@code null}
2630
     * @param offset
2631
     *          The number of positions to rotate the elements.  If the offset is larger than the number of elements to
2632
     *          rotate, than the effective offset is modulo the number of elements to rotate.
2633
     * @since 3.5
2634
     */
2635
    public static void shift(final boolean[] array, int offset) {
2636 7 1. shift : negated conditional → NO_COVERAGE
2. shift : negated conditional → NO_COVERAGE
3. shift : negated conditional → NO_COVERAGE
4. shift : negated conditional → NO_COVERAGE
5. shift : negated conditional → NO_COVERAGE
6. shift : negated conditional → NO_COVERAGE
7. shift : negated conditional → NO_COVERAGE
        if (array == null) {
2637
            return;
2638
        }
2639 7 1. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NO_COVERAGE
2. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NO_COVERAGE
3. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NO_COVERAGE
4. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NO_COVERAGE
5. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NO_COVERAGE
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NO_COVERAGE
7. shift : removed call to org/apache/commons/lang3/ArrayUtils::shift → NO_COVERAGE
        shift(array, 0, array.length, offset);
2640
    }
2641
2642
    /**
2643
     * Shifts the order of a series of elements in the given boolean array.
2644
     *
2645
     * <p>There is no special handling for multi-dimensional arrays. This method
2646
     * does nothing for {@code null} or empty input arrays.</p>
2647
     * 
2648
     * @param array
2649
     *            the array to shift, may be {@code null}
2650
     * @param startIndexInclusive
2651
     *            the starting index. Undervalue (&lt;0) is promoted to 0, overvalue (&gt;array.length) results in no
2652
     *            change.
2653
     * @param endIndexExclusive
2654
     *            elements up to endIndex-1 are shiftd in the array. Undervalue (&lt; start index) results in no
2655
     *            change. Overvalue (&gt;array.length) is demoted to array length.
2656
     * @param offset
2657
     *          The number of positions to rotate the elements.  If the offset is larger than the number of elements to
2658
     *          rotate, than the effective offset is modulo the number of elements to rotate.
2659
     * @since 3.5
2660
     */
2661
    public static void shift(final boolean[] array, int startIndexInclusive, int endIndexExclusive, int offset) {
2662 7 1. shift : negated conditional → NO_COVERAGE
2. shift : negated conditional → NO_COVERAGE
3. shift : negated conditional → NO_COVERAGE
4. shift : negated conditional → NO_COVERAGE
5. shift : negated conditional → NO_COVERAGE
6. shift : negated conditional → NO_COVERAGE
7. shift : negated conditional → NO_COVERAGE
        if (array == null) {
2663
            return;
2664
        }
2665 35 1. shift : changed conditional boundary → NO_COVERAGE
2. shift : changed conditional boundary → NO_COVERAGE
3. shift : Replaced integer subtraction with addition → NO_COVERAGE
4. shift : negated conditional → NO_COVERAGE
5. shift : negated conditional → NO_COVERAGE
6. shift : changed conditional boundary → NO_COVERAGE
7. shift : changed conditional boundary → NO_COVERAGE
8. shift : Replaced integer subtraction with addition → NO_COVERAGE
9. shift : negated conditional → NO_COVERAGE
10. shift : negated conditional → NO_COVERAGE
11. shift : changed conditional boundary → NO_COVERAGE
12. shift : changed conditional boundary → NO_COVERAGE
13. shift : Replaced integer subtraction with addition → NO_COVERAGE
14. shift : negated conditional → NO_COVERAGE
15. shift : negated conditional → NO_COVERAGE
16. shift : changed conditional boundary → NO_COVERAGE
17. shift : changed conditional boundary → NO_COVERAGE
18. shift : Replaced integer subtraction with addition → NO_COVERAGE
19. shift : negated conditional → NO_COVERAGE
20. shift : negated conditional → NO_COVERAGE
21. shift : changed conditional boundary → NO_COVERAGE
22. shift : changed conditional boundary → NO_COVERAGE
23. shift : Replaced integer subtraction with addition → NO_COVERAGE
24. shift : negated conditional → NO_COVERAGE
25. shift : negated conditional → NO_COVERAGE
26. shift : changed conditional boundary → NO_COVERAGE
27. shift : changed conditional boundary → NO_COVERAGE
28. shift : Replaced integer subtraction with addition → NO_COVERAGE
29. shift : negated conditional → NO_COVERAGE
30. shift : negated conditional → NO_COVERAGE
31. shift : changed conditional boundary → NO_COVERAGE
32. shift : changed conditional boundary → NO_COVERAGE
33. shift : Replaced integer subtraction with addition → NO_COVERAGE
34. shift : negated conditional → NO_COVERAGE
35. shift : negated conditional → NO_COVERAGE
        if (startIndexInclusive >= array.length - 1 || endIndexExclusive <= 0) {
2666
            return;
2667
        }
2668 14 1. shift : changed conditional boundary → NO_COVERAGE
2. shift : negated conditional → NO_COVERAGE
3. shift : changed conditional boundary → NO_COVERAGE
4. shift : negated conditional → NO_COVERAGE
5. shift : changed conditional boundary → NO_COVERAGE
6. shift : negated conditional → NO_COVERAGE
7. shift : changed conditional boundary → NO_COVERAGE
8. shift : negated conditional → NO_COVERAGE
9. shift : changed conditional boundary → NO_COVERAGE
10. shift : negated conditional → NO_COVERAGE
11. shift : changed conditional boundary → NO_COVERAGE
12. shift : negated conditional → NO_COVERAGE
13. shift : changed conditional boundary → NO_COVERAGE
14. shift : negated conditional → NO_COVERAGE
        if (startIndexInclusive < 0) {
2669
            startIndexInclusive = 0;
2670
        } 
2671 14 1. shift : changed conditional boundary → NO_COVERAGE
2. shift : negated conditional → NO_COVERAGE
3. shift : changed conditional boundary → NO_COVERAGE
4. shift : negated conditional → NO_COVERAGE
5. shift : changed conditional boundary → NO_COVERAGE
6. shift : negated conditional → NO_COVERAGE
7. shift : changed conditional boundary → NO_COVERAGE
8. shift : negated conditional → NO_COVERAGE
9. shift : changed conditional boundary → NO_COVERAGE
10. shift : negated conditional → NO_COVERAGE
11. shift : changed conditional boundary → NO_COVERAGE
12. shift : negated conditional → NO_COVERAGE
13. shift : changed conditional boundary → NO_COVERAGE
14. shift : negated conditional → NO_COVERAGE
        if (endIndexExclusive >= array.length) {
2672
            endIndexExclusive = array.length;
2673
        }        
2674 7 1. shift : Replaced integer subtraction with addition → NO_COVERAGE
2. shift : Replaced integer subtraction with addition → NO_COVERAGE
3. shift : Replaced integer subtraction with addition → NO_COVERAGE
4. shift : Replaced integer subtraction with addition → NO_COVERAGE
5. shift : Replaced integer subtraction with addition → NO_COVERAGE
6. shift : Replaced integer subtraction with addition → NO_COVERAGE
7. shift : Replaced integer subtraction with addition → NO_COVERAGE
        int n = endIndexExclusive - startIndexInclusive;
2675 14 1. shift : changed conditional boundary → NO_COVERAGE
2. shift : negated conditional → NO_COVERAGE
3. shift : changed conditional boundary → NO_COVERAGE
4. shift : negated conditional → NO_COVERAGE
5. shift : changed conditional boundary → NO_COVERAGE
6. shift : negated conditional → NO_COVERAGE
7. shift : changed conditional boundary → NO_COVERAGE
8. shift : negated conditional → NO_COVERAGE
9. shift : changed conditional boundary → NO_COVERAGE
10. shift : negated conditional → NO_COVERAGE
11. shift : changed conditional boundary → NO_COVERAGE
12. shift : negated conditional → NO_COVERAGE
13. shift : changed conditional boundary → NO_COVERAGE
14. shift : negated conditional → NO_COVERAGE
        if (n <= 1) {
2676
            return;
2677
        }
2678 7 1. shift : Replaced integer modulus with multiplication → NO_COVERAGE
2. shift : Replaced integer modulus with multiplication → NO_COVERAGE
3. shift : Replaced integer modulus with multiplication → NO_COVERAGE
4. shift : Replaced integer modulus with multiplication → NO_COVERAGE
5. shift : Replaced integer modulus with multiplication → NO_COVERAGE
6. shift : Replaced integer modulus with multiplication → NO_COVERAGE
7. shift : Replaced integer modulus with multiplication → NO_COVERAGE
        offset %= n;
2679 14 1. shift : changed conditional boundary → NO_COVERAGE
2. shift : negated conditional → NO_COVERAGE
3. shift : changed conditional boundary → NO_COVERAGE
4. shift : negated conditional → NO_COVERAGE
5. shift : changed conditional boundary → NO_COVERAGE
6. shift : negated conditional → NO_COVERAGE
7. shift : changed conditional boundary → NO_COVERAGE
8. shift : negated conditional → NO_COVERAGE
9. shift : changed conditional boundary → NO_COVERAGE
10. shift : negated conditional → NO_COVERAGE
11. shift : changed conditional boundary → NO_COVERAGE
12. shift : negated conditional → NO_COVERAGE
13. shift : changed conditional boundary → NO_COVERAGE
14. shift : negated conditional → NO_COVERAGE
        if (offset < 0) {
2680 7 1. shift : Replaced integer addition with subtraction → NO_COVERAGE
2. shift : Replaced integer addition with subtraction → NO_COVERAGE
3. shift : Replaced integer addition with subtraction → NO_COVERAGE
4. shift : Replaced integer addition with subtraction → NO_COVERAGE
5. shift : Replaced integer addition with subtraction → NO_COVERAGE
6. shift : Replaced integer addition with subtraction → NO_COVERAGE
7. shift : Replaced integer addition with subtraction → NO_COVERAGE
            offset += n;
2681
        }
2682
        // For algorithm explanations and proof of O(n) time complexity and O(1) space complexity
2683
        // see https://beradrian.wordpress.com/2015/04/07/shift-an-array-in-on-in-place/
2684 28 1. shift : changed conditional boundary → NO_COVERAGE
2. shift : changed conditional boundary → NO_COVERAGE
3. shift : negated conditional → NO_COVERAGE
4. shift : negated conditional → NO_COVERAGE
5. shift : changed conditional boundary → NO_COVERAGE
6. shift : changed conditional boundary → NO_COVERAGE
7. shift : negated conditional → NO_COVERAGE
8. shift : negated conditional → NO_COVERAGE
9. shift : changed conditional boundary → NO_COVERAGE
10. shift : changed conditional boundary → NO_COVERAGE
11. shift : negated conditional → NO_COVERAGE
12. shift : negated conditional → NO_COVERAGE
13. shift : changed conditional boundary → NO_COVERAGE
14. shift : changed conditional boundary → NO_COVERAGE
15. shift : negated conditional → NO_COVERAGE
16. shift : negated conditional → NO_COVERAGE
17. shift : changed conditional boundary → NO_COVERAGE
18. shift : changed conditional boundary → NO_COVERAGE
19. shift : negated conditional → NO_COVERAGE
20. shift : negated conditional → NO_COVERAGE
21. shift : changed conditional boundary → NO_COVERAGE
22. shift : changed conditional boundary → NO_COVERAGE
23. shift : negated conditional → NO_COVERAGE
24. shift : negated conditional → NO_COVERAGE
25. shift : changed conditional boundary → NO_COVERAGE
26. shift : changed conditional boundary → NO_COVERAGE
27. shift : negated conditional → NO_COVERAGE
28. shift : negated conditional → NO_COVERAGE
        while (n > 1 && offset > 0) {
2685 7 1. shift : Replaced integer subtraction with addition → NO_COVERAGE
2. shift : Replaced integer subtraction with addition → NO_COVERAGE
3. shift : Replaced integer subtraction with addition → NO_COVERAGE
4. shift : Replaced integer subtraction with addition → NO_COVERAGE
5. shift : Replaced integer subtraction with addition → NO_COVERAGE
6. shift : Replaced integer subtraction with addition → NO_COVERAGE
7. shift : Replaced integer subtraction with addition → NO_COVERAGE
            int n_offset = n - offset;
2686
            
2687 14 1. shift : changed conditional boundary → NO_COVERAGE
2. shift : negated conditional → NO_COVERAGE
3. shift : changed conditional boundary → NO_COVERAGE
4. shift : negated conditional → NO_COVERAGE
5. shift : changed conditional boundary → NO_COVERAGE
6. shift : negated conditional → NO_COVERAGE
7. shift : changed conditional boundary → NO_COVERAGE
8. shift : negated conditional → NO_COVERAGE
9. shift : changed conditional boundary → NO_COVERAGE
10. shift : negated conditional → NO_COVERAGE
11. shift : changed conditional boundary → NO_COVERAGE
12. shift : negated conditional → NO_COVERAGE
13. shift : changed conditional boundary → NO_COVERAGE
14. shift : negated conditional → NO_COVERAGE
            if (offset > n_offset) {
2688 21 1. shift : Replaced integer addition with subtraction → NO_COVERAGE
2. shift : Replaced integer subtraction with addition → NO_COVERAGE
3. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
4. shift : Replaced integer addition with subtraction → NO_COVERAGE
5. shift : Replaced integer subtraction with addition → NO_COVERAGE
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
7. shift : Replaced integer addition with subtraction → NO_COVERAGE
8. shift : Replaced integer subtraction with addition → NO_COVERAGE
9. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
10. shift : Replaced integer addition with subtraction → NO_COVERAGE
11. shift : Replaced integer subtraction with addition → NO_COVERAGE
12. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
13. shift : Replaced integer addition with subtraction → NO_COVERAGE
14. shift : Replaced integer subtraction with addition → NO_COVERAGE
15. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
16. shift : Replaced integer addition with subtraction → NO_COVERAGE
17. shift : Replaced integer subtraction with addition → NO_COVERAGE
18. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
19. shift : Replaced integer addition with subtraction → NO_COVERAGE
20. shift : Replaced integer subtraction with addition → NO_COVERAGE
21. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
                swap(array, startIndexInclusive, startIndexInclusive + n - n_offset,  n_offset);
2689
                n = offset;
2690 7 1. shift : Replaced integer subtraction with addition → NO_COVERAGE
2. shift : Replaced integer subtraction with addition → NO_COVERAGE
3. shift : Replaced integer subtraction with addition → NO_COVERAGE
4. shift : Replaced integer subtraction with addition → NO_COVERAGE
5. shift : Replaced integer subtraction with addition → NO_COVERAGE
6. shift : Replaced integer subtraction with addition → NO_COVERAGE
7. shift : Replaced integer subtraction with addition → NO_COVERAGE
                offset -= n_offset;
2691 14 1. shift : changed conditional boundary → NO_COVERAGE
2. shift : negated conditional → NO_COVERAGE
3. shift : changed conditional boundary → NO_COVERAGE
4. shift : negated conditional → NO_COVERAGE
5. shift : changed conditional boundary → NO_COVERAGE
6. shift : negated conditional → NO_COVERAGE
7. shift : changed conditional boundary → NO_COVERAGE
8. shift : negated conditional → NO_COVERAGE
9. shift : changed conditional boundary → NO_COVERAGE
10. shift : negated conditional → NO_COVERAGE
11. shift : changed conditional boundary → NO_COVERAGE
12. shift : negated conditional → NO_COVERAGE
13. shift : changed conditional boundary → NO_COVERAGE
14. shift : negated conditional → NO_COVERAGE
            } else if (offset < n_offset) {
2692 14 1. shift : Replaced integer addition with subtraction → NO_COVERAGE
2. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
3. shift : Replaced integer addition with subtraction → NO_COVERAGE
4. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
5. shift : Replaced integer addition with subtraction → NO_COVERAGE
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
7. shift : Replaced integer addition with subtraction → NO_COVERAGE
8. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
9. shift : Replaced integer addition with subtraction → NO_COVERAGE
10. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
11. shift : Replaced integer addition with subtraction → NO_COVERAGE
12. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
13. shift : Replaced integer addition with subtraction → NO_COVERAGE
14. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
                swap(array, startIndexInclusive, startIndexInclusive + n_offset,  offset);
2693 7 1. shift : Replaced integer addition with subtraction → NO_COVERAGE
2. shift : Replaced integer addition with subtraction → NO_COVERAGE
3. shift : Replaced integer addition with subtraction → NO_COVERAGE
4. shift : Replaced integer addition with subtraction → NO_COVERAGE
5. shift : Replaced integer addition with subtraction → NO_COVERAGE
6. shift : Replaced integer addition with subtraction → NO_COVERAGE
7. shift : Replaced integer addition with subtraction → NO_COVERAGE
                startIndexInclusive += offset;
2694
                n = n_offset;
2695
            } else {
2696 14 1. shift : Replaced integer addition with subtraction → NO_COVERAGE
2. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
3. shift : Replaced integer addition with subtraction → NO_COVERAGE
4. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
5. shift : Replaced integer addition with subtraction → NO_COVERAGE
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
7. shift : Replaced integer addition with subtraction → NO_COVERAGE
8. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
9. shift : Replaced integer addition with subtraction → NO_COVERAGE
10. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
11. shift : Replaced integer addition with subtraction → NO_COVERAGE
12. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
13. shift : Replaced integer addition with subtraction → NO_COVERAGE
14. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE
                swap(array, startIndexInclusive, startIndexInclusive + n_offset, offset);
2697
                break;
2698
            }
2699
        }
2700
    }
2701
2702
    /**
2703
     * Shifts the order of a series of elements in the given byte array.
2704
     *
2705
     * <p>There is no special handling for multi-dimensional arrays. This method
2706
     * does nothing for {@code null} or empty input arrays.</p>
2707
     * 
2708
     * @param array
2709
     *            the array to shift, may be {@code null}
2710
     * @param startIndexInclusive
2711
     *            the starting index. Undervalue (&lt;0) is promoted to 0, overvalue (&gt;array.length) results in no
2712
     *            change.
2713
     * @param endIndexExclusive
2714
     *            elements up to endIndex-1 are shiftd in the array. Undervalue (&lt; start index) results in no
2715
     *            change. Overvalue (&gt;array.length) is demoted to array length.
2716
     * @param offset
2717
     *          The number of positions to rotate the elements.  If the offset is larger than the number of elements to
2718
     *          rotate, than the effective offset is modulo the number of elements to rotate.
2719
     * @since 3.5
2720
     */
2721
    public static void shift(final byte[] array, int startIndexInclusive, int endIndexExclusive, int offset) {
2722 7 1. shift : negated conditional → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : negated conditional → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : negated conditional → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : negated conditional → NOT_SCHEDULED
        if (array == null) {
2723
            return;
2724
        }
2725 35 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : changed conditional boundary → NOT_SCHEDULED
3. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : negated conditional → NOT_SCHEDULED
6. shift : changed conditional boundary → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
9. shift : negated conditional → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : changed conditional boundary → NOT_SCHEDULED
13. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
15. shift : negated conditional → NOT_SCHEDULED
16. shift : changed conditional boundary → NOT_SCHEDULED
17. shift : changed conditional boundary → NOT_SCHEDULED
18. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
19. shift : negated conditional → NOT_SCHEDULED
20. shift : negated conditional → NOT_SCHEDULED
21. shift : changed conditional boundary → NOT_SCHEDULED
22. shift : changed conditional boundary → NOT_SCHEDULED
23. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
24. shift : negated conditional → NOT_SCHEDULED
25. shift : negated conditional → NOT_SCHEDULED
26. shift : changed conditional boundary → NOT_SCHEDULED
27. shift : changed conditional boundary → NOT_SCHEDULED
28. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
29. shift : negated conditional → NOT_SCHEDULED
30. shift : negated conditional → NOT_SCHEDULED
31. shift : changed conditional boundary → NOT_SCHEDULED
32. shift : changed conditional boundary → NOT_SCHEDULED
33. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
34. shift : negated conditional → NOT_SCHEDULED
35. shift : negated conditional → NOT_SCHEDULED
        if (startIndexInclusive >= array.length - 1 || endIndexExclusive <= 0) {
2726
            return;
2727
        }
2728 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
        if (startIndexInclusive < 0) {
2729
            startIndexInclusive = 0;
2730
        } 
2731 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
        if (endIndexExclusive >= array.length) {
2732
            endIndexExclusive = array.length;
2733
        }        
2734 7 1. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
2. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
3. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
4. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
5. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
6. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
7. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
        int n = endIndexExclusive - startIndexInclusive;
2735 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
        if (n <= 1) {
2736
            return;
2737
        }
2738 7 1. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
2. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
3. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
4. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
5. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
6. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
7. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
        offset %= n;
2739 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
        if (offset < 0) {
2740 7 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
3. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
4. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
5. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
6. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
            offset += n;
2741
        }
2742
        // For algorithm explanations and proof of O(n) time complexity and O(1) space complexity
2743
        // see https://beradrian.wordpress.com/2015/04/07/shift-an-array-in-on-in-place/
2744 28 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : changed conditional boundary → NOT_SCHEDULED
3. shift : negated conditional → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → SURVIVED
6. shift : changed conditional boundary → NOT_SCHEDULED
7. shift : negated conditional → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → SURVIVED
10. shift : changed conditional boundary → NOT_SCHEDULED
11. shift : negated conditional → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → SURVIVED
14. shift : changed conditional boundary → NOT_SCHEDULED
15. shift : negated conditional → NOT_SCHEDULED
16. shift : negated conditional → NOT_SCHEDULED
17. shift : changed conditional boundary → SURVIVED
18. shift : changed conditional boundary → NOT_SCHEDULED
19. shift : negated conditional → NOT_SCHEDULED
20. shift : negated conditional → NOT_SCHEDULED
21. shift : changed conditional boundary → SURVIVED
22. shift : changed conditional boundary → NOT_SCHEDULED
23. shift : negated conditional → NOT_SCHEDULED
24. shift : negated conditional → NOT_SCHEDULED
25. shift : changed conditional boundary → SURVIVED
26. shift : changed conditional boundary → NOT_SCHEDULED
27. shift : negated conditional → NOT_SCHEDULED
28. shift : negated conditional → NOT_SCHEDULED
        while (n > 1 && offset > 0) {
2745 7 1. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
2. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
3. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
4. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
5. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
6. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
7. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
            int n_offset = n - offset;
2746
            
2747 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
            if (offset > n_offset) {
2748 21 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
3. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
4. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
5. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
8. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
9. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
10. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
11. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
12. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
13. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
14. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
15. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
16. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
17. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
18. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
19. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
20. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
21. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
                swap(array, startIndexInclusive, startIndexInclusive + n - n_offset,  n_offset);
2749
                n = offset;
2750 7 1. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
2. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
3. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
4. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
5. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
6. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
7. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
                offset -= n_offset;
2751 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
            } else if (offset < n_offset) {
2752 14 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
3. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
4. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
5. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
8. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
9. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
10. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
11. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
12. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
13. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
14. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
                swap(array, startIndexInclusive, startIndexInclusive + n_offset,  offset);
2753 7 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
3. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
4. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
5. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
6. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
                startIndexInclusive += offset;
2754
                n = n_offset;
2755
            } else {
2756 14 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
3. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
4. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
5. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
6. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
8. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
9. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → KILLED
10. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → KILLED
11. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → KILLED
12. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → KILLED
13. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → KILLED
14. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → KILLED
                swap(array, startIndexInclusive, startIndexInclusive + n_offset, offset);
2757
                break;
2758
            }
2759
        }
2760
    }
2761
2762
    /**
2763
     * Shifts the order of a series of elements in the given char array.
2764
     *
2765
     * <p>There is no special handling for multi-dimensional arrays. This method
2766
     * does nothing for {@code null} or empty input arrays.</p>
2767
     *
2768
     * @param array
2769
     *            the array to shift, may be {@code null}
2770
     * @param startIndexInclusive
2771
     *            the starting index. Undervalue (&lt;0) is promoted to 0, overvalue (&gt;array.length) results in no
2772
     *            change.
2773
     * @param endIndexExclusive
2774
     *            elements up to endIndex-1 are shiftd in the array. Undervalue (&lt; start index) results in no
2775
     *            change. Overvalue (&gt;array.length) is demoted to array length.
2776
     * @param offset
2777
     *          The number of positions to rotate the elements.  If the offset is larger than the number of elements to
2778
     *          rotate, than the effective offset is modulo the number of elements to rotate.
2779
     * @since 3.5
2780
     */
2781
    public static void shift(final char[] array, int startIndexInclusive, int endIndexExclusive, int offset) {
2782 7 1. shift : negated conditional → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : negated conditional → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : negated conditional → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : negated conditional → NOT_SCHEDULED
        if (array == null) {
2783
            return;
2784
        }
2785 35 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : changed conditional boundary → NOT_SCHEDULED
3. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : negated conditional → NOT_SCHEDULED
6. shift : changed conditional boundary → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
9. shift : negated conditional → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : changed conditional boundary → NOT_SCHEDULED
13. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
15. shift : negated conditional → NOT_SCHEDULED
16. shift : changed conditional boundary → NOT_SCHEDULED
17. shift : changed conditional boundary → NOT_SCHEDULED
18. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
19. shift : negated conditional → NOT_SCHEDULED
20. shift : negated conditional → NOT_SCHEDULED
21. shift : changed conditional boundary → NOT_SCHEDULED
22. shift : changed conditional boundary → NOT_SCHEDULED
23. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
24. shift : negated conditional → NOT_SCHEDULED
25. shift : negated conditional → NOT_SCHEDULED
26. shift : changed conditional boundary → NOT_SCHEDULED
27. shift : changed conditional boundary → NOT_SCHEDULED
28. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
29. shift : negated conditional → NOT_SCHEDULED
30. shift : negated conditional → NOT_SCHEDULED
31. shift : changed conditional boundary → NOT_SCHEDULED
32. shift : changed conditional boundary → NOT_SCHEDULED
33. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
34. shift : negated conditional → NOT_SCHEDULED
35. shift : negated conditional → NOT_SCHEDULED
        if (startIndexInclusive >= array.length - 1 || endIndexExclusive <= 0) {
2786
            return;
2787
        }
2788 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
        if (startIndexInclusive < 0) {
2789
            startIndexInclusive = 0;
2790
        } 
2791 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
        if (endIndexExclusive >= array.length) {
2792
            endIndexExclusive = array.length;
2793
        }        
2794 7 1. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
2. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
3. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
4. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
5. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
6. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
7. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
        int n = endIndexExclusive - startIndexInclusive;
2795 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
        if (n <= 1) {
2796
            return;
2797
        }
2798 7 1. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
2. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
3. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
4. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
5. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
6. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
7. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
        offset %= n;
2799 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
        if (offset < 0) {
2800 7 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
3. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
4. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
5. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
6. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
            offset += n;
2801
        }
2802
        // For algorithm explanations and proof of O(n) time complexity and O(1) space complexity
2803
        // see https://beradrian.wordpress.com/2015/04/07/shift-an-array-in-on-in-place/
2804 28 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : changed conditional boundary → NOT_SCHEDULED
3. shift : negated conditional → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : changed conditional boundary → NOT_SCHEDULED
7. shift : negated conditional → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : changed conditional boundary → NOT_SCHEDULED
11. shift : negated conditional → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : changed conditional boundary → NOT_SCHEDULED
15. shift : negated conditional → NOT_SCHEDULED
16. shift : negated conditional → NOT_SCHEDULED
17. shift : changed conditional boundary → NOT_SCHEDULED
18. shift : changed conditional boundary → NOT_SCHEDULED
19. shift : negated conditional → NOT_SCHEDULED
20. shift : negated conditional → NOT_SCHEDULED
21. shift : changed conditional boundary → NOT_SCHEDULED
22. shift : changed conditional boundary → NOT_SCHEDULED
23. shift : negated conditional → NOT_SCHEDULED
24. shift : negated conditional → NOT_SCHEDULED
25. shift : changed conditional boundary → NOT_SCHEDULED
26. shift : changed conditional boundary → NOT_SCHEDULED
27. shift : negated conditional → NOT_SCHEDULED
28. shift : negated conditional → NOT_SCHEDULED
        while (n > 1 && offset > 0) {
2805 7 1. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
2. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
3. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
4. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
5. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
6. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
7. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
            int n_offset = n - offset;
2806
            
2807 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
            if (offset > n_offset) {
2808 21 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
3. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
4. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
5. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
8. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
9. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
10. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
11. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
12. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
13. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
14. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
15. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
16. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
17. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
18. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
19. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
20. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
21. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
                swap(array, startIndexInclusive, startIndexInclusive + n - n_offset,  n_offset);
2809
                n = offset;
2810 7 1. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
2. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
3. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
4. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
5. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
6. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
7. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
                offset -= n_offset;
2811 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → SURVIVED
14. shift : negated conditional → NOT_SCHEDULED
            } else if (offset < n_offset) {
2812 14 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
3. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
4. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
5. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
8. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
9. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
10. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
11. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
12. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
13. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
14. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
                swap(array, startIndexInclusive, startIndexInclusive + n_offset,  offset);
2813 7 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
3. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
4. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
5. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
6. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
                startIndexInclusive += offset;
2814
                n = n_offset;
2815
            } else {
2816 14 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
3. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
4. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
5. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
8. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
9. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
10. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
11. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
12. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
13. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
14. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
                swap(array, startIndexInclusive, startIndexInclusive + n_offset, offset);
2817
                break;
2818
            }
2819
        }
2820
    }
2821
2822
    /**
2823
     * Shifts the order of a series of elements in the given double array.
2824
     *
2825
     * <p>There is no special handling for multi-dimensional arrays. This method
2826
     * does nothing for {@code null} or empty input arrays.</p>
2827
     *
2828
     * @param array
2829
     *            the array to shift, may be {@code null}
2830
     * @param startIndexInclusive
2831
     *            the starting index. Undervalue (&lt;0) is promoted to 0, overvalue (&gt;array.length) results in no
2832
     *            change.
2833
     * @param endIndexExclusive
2834
     *            elements up to endIndex-1 are shiftd in the array. Undervalue (&lt; start index) results in no
2835
     *            change. Overvalue (&gt;array.length) is demoted to array length.
2836
     * @param offset
2837
     *          The number of positions to rotate the elements.  If the offset is larger than the number of elements to
2838
     *          rotate, than the effective offset is modulo the number of elements to rotate.
2839
     * @since 3.5
2840
     */
2841
    public static void shift(final double[] array, int startIndexInclusive, int endIndexExclusive, int offset) {
2842 7 1. shift : negated conditional → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : negated conditional → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : negated conditional → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : negated conditional → NOT_SCHEDULED
        if (array == null) {
2843
            return;
2844
        }
2845 35 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : changed conditional boundary → NOT_SCHEDULED
3. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : negated conditional → NOT_SCHEDULED
6. shift : changed conditional boundary → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
9. shift : negated conditional → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : changed conditional boundary → NOT_SCHEDULED
13. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
15. shift : negated conditional → NOT_SCHEDULED
16. shift : changed conditional boundary → NOT_SCHEDULED
17. shift : changed conditional boundary → NOT_SCHEDULED
18. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
19. shift : negated conditional → NOT_SCHEDULED
20. shift : negated conditional → NOT_SCHEDULED
21. shift : changed conditional boundary → NOT_SCHEDULED
22. shift : changed conditional boundary → SURVIVED
23. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
24. shift : negated conditional → NOT_SCHEDULED
25. shift : negated conditional → NOT_SCHEDULED
26. shift : changed conditional boundary → NOT_SCHEDULED
27. shift : changed conditional boundary → SURVIVED
28. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
29. shift : negated conditional → NOT_SCHEDULED
30. shift : negated conditional → NOT_SCHEDULED
31. shift : changed conditional boundary → NOT_SCHEDULED
32. shift : changed conditional boundary → SURVIVED
33. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
34. shift : negated conditional → NOT_SCHEDULED
35. shift : negated conditional → NOT_SCHEDULED
        if (startIndexInclusive >= array.length - 1 || endIndexExclusive <= 0) {
2846
            return;
2847
        }
2848 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
        if (startIndexInclusive < 0) {
2849
            startIndexInclusive = 0;
2850
        } 
2851 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
        if (endIndexExclusive >= array.length) {
2852
            endIndexExclusive = array.length;
2853
        }        
2854 7 1. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
2. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
3. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
4. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
5. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
6. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
7. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
        int n = endIndexExclusive - startIndexInclusive;
2855 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
        if (n <= 1) {
2856
            return;
2857
        }
2858 7 1. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
2. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
3. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
4. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
5. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
6. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
7. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
        offset %= n;
2859 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
        if (offset < 0) {
2860 7 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
3. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
4. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
5. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
6. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
            offset += n;
2861
        }
2862
        // For algorithm explanations and proof of O(n) time complexity and O(1) space complexity
2863
        // see https://beradrian.wordpress.com/2015/04/07/shift-an-array-in-on-in-place/
2864 28 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : changed conditional boundary → NOT_SCHEDULED
3. shift : negated conditional → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : changed conditional boundary → NOT_SCHEDULED
7. shift : negated conditional → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : changed conditional boundary → NOT_SCHEDULED
11. shift : negated conditional → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : changed conditional boundary → NOT_SCHEDULED
15. shift : negated conditional → NOT_SCHEDULED
16. shift : negated conditional → NOT_SCHEDULED
17. shift : changed conditional boundary → NOT_SCHEDULED
18. shift : changed conditional boundary → NOT_SCHEDULED
19. shift : negated conditional → NOT_SCHEDULED
20. shift : negated conditional → NOT_SCHEDULED
21. shift : changed conditional boundary → NOT_SCHEDULED
22. shift : changed conditional boundary → NOT_SCHEDULED
23. shift : negated conditional → NOT_SCHEDULED
24. shift : negated conditional → NOT_SCHEDULED
25. shift : changed conditional boundary → NOT_SCHEDULED
26. shift : changed conditional boundary → NOT_SCHEDULED
27. shift : negated conditional → NOT_SCHEDULED
28. shift : negated conditional → NOT_SCHEDULED
        while (n > 1 && offset > 0) {
2865 7 1. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
2. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
3. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
4. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
5. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
6. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
7. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
            int n_offset = n - offset;
2866
            
2867 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
            if (offset > n_offset) {
2868 21 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
3. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
4. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
5. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
8. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
9. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
10. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
11. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
12. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
13. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
14. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
15. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
16. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
17. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
18. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
19. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
20. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
21. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
                swap(array, startIndexInclusive, startIndexInclusive + n - n_offset,  n_offset);
2869
                n = offset;
2870 7 1. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
2. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
3. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
4. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
5. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
6. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
7. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
                offset -= n_offset;
2871 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
            } else if (offset < n_offset) {
2872 14 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
3. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
4. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
5. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
8. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
9. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
10. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
11. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
12. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
13. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
14. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
                swap(array, startIndexInclusive, startIndexInclusive + n_offset,  offset);
2873 7 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
3. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
4. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
5. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
6. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
                startIndexInclusive += offset;
2874
                n = n_offset;
2875
            } else {
2876 14 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
3. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
4. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
5. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
8. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
9. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
10. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
11. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
12. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
13. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
14. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
                swap(array, startIndexInclusive, startIndexInclusive + n_offset, offset);
2877
                break;
2878
            }
2879
        }
2880
    }
2881
2882
    /**
2883
     * Shifts the order of a series of elements in the given float array.
2884
     *
2885
     * <p>There is no special handling for multi-dimensional arrays. This method
2886
     * does nothing for {@code null} or empty input arrays.</p>
2887
     *
2888
     * @param array
2889
     *            the array to shift, may be {@code null}
2890
     * @param startIndexInclusive
2891
     *            the starting index. Undervalue (&lt;0) is promoted to 0, overvalue (&gt;array.length) results in no
2892
     *            change.
2893
     * @param endIndexExclusive
2894
     *            elements up to endIndex-1 are shiftd in the array. Undervalue (&lt; start index) results in no
2895
     *            change. Overvalue (&gt;array.length) is demoted to array length.
2896
     * @param offset
2897
     *          The number of positions to rotate the elements.  If the offset is larger than the number of elements to
2898
     *          rotate, than the effective offset is modulo the number of elements to rotate.
2899
     * @since 3.5
2900
     */
2901
    public static void shift(final float[] array, int startIndexInclusive, int endIndexExclusive, int offset) {
2902 7 1. shift : negated conditional → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : negated conditional → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : negated conditional → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : negated conditional → NOT_SCHEDULED
        if (array == null) {
2903
            return;
2904
        }
2905 35 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : changed conditional boundary → NOT_SCHEDULED
3. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : negated conditional → NOT_SCHEDULED
6. shift : changed conditional boundary → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
9. shift : negated conditional → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : changed conditional boundary → NOT_SCHEDULED
13. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
15. shift : negated conditional → NOT_SCHEDULED
16. shift : changed conditional boundary → NOT_SCHEDULED
17. shift : changed conditional boundary → NOT_SCHEDULED
18. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
19. shift : negated conditional → NOT_SCHEDULED
20. shift : negated conditional → NOT_SCHEDULED
21. shift : changed conditional boundary → NOT_SCHEDULED
22. shift : changed conditional boundary → NOT_SCHEDULED
23. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
24. shift : negated conditional → NOT_SCHEDULED
25. shift : negated conditional → NOT_SCHEDULED
26. shift : changed conditional boundary → NOT_SCHEDULED
27. shift : changed conditional boundary → NOT_SCHEDULED
28. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
29. shift : negated conditional → NOT_SCHEDULED
30. shift : negated conditional → NOT_SCHEDULED
31. shift : changed conditional boundary → NOT_SCHEDULED
32. shift : changed conditional boundary → NOT_SCHEDULED
33. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
34. shift : negated conditional → NOT_SCHEDULED
35. shift : negated conditional → NOT_SCHEDULED
        if (startIndexInclusive >= array.length - 1 || endIndexExclusive <= 0) {
2906
            return;
2907
        }
2908 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
        if (startIndexInclusive < 0) {
2909
            startIndexInclusive = 0;
2910
        } 
2911 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
        if (endIndexExclusive >= array.length) {
2912
            endIndexExclusive = array.length;
2913
        }        
2914 7 1. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
2. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
3. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
4. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
5. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
6. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
7. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
        int n = endIndexExclusive - startIndexInclusive;
2915 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
        if (n <= 1) {
2916
            return;
2917
        }
2918 7 1. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
2. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
3. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
4. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
5. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
6. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
7. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
        offset %= n;
2919 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
        if (offset < 0) {
2920 7 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
3. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
4. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
5. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
6. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
            offset += n;
2921
        }
2922
        // For algorithm explanations and proof of O(n) time complexity and O(1) space complexity
2923
        // see https://beradrian.wordpress.com/2015/04/07/shift-an-array-in-on-in-place/
2924 28 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : changed conditional boundary → NOT_SCHEDULED
3. shift : negated conditional → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : changed conditional boundary → NOT_SCHEDULED
7. shift : negated conditional → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : changed conditional boundary → NOT_SCHEDULED
11. shift : negated conditional → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : changed conditional boundary → NOT_SCHEDULED
15. shift : negated conditional → NOT_SCHEDULED
16. shift : negated conditional → NOT_SCHEDULED
17. shift : changed conditional boundary → NOT_SCHEDULED
18. shift : changed conditional boundary → NOT_SCHEDULED
19. shift : negated conditional → NOT_SCHEDULED
20. shift : negated conditional → NOT_SCHEDULED
21. shift : changed conditional boundary → NOT_SCHEDULED
22. shift : changed conditional boundary → NOT_SCHEDULED
23. shift : negated conditional → NOT_SCHEDULED
24. shift : negated conditional → NOT_SCHEDULED
25. shift : changed conditional boundary → NOT_SCHEDULED
26. shift : changed conditional boundary → NOT_SCHEDULED
27. shift : negated conditional → NOT_SCHEDULED
28. shift : negated conditional → NOT_SCHEDULED
        while (n > 1 && offset > 0) {
2925 7 1. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
2. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
3. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
4. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
5. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
6. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
7. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
            int n_offset = n - offset;
2926
            
2927 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
            if (offset > n_offset) {
2928 21 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
3. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
4. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
5. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
8. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
9. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
10. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
11. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
12. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
13. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
14. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
15. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
16. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
17. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
18. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
19. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
20. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
21. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
                swap(array, startIndexInclusive, startIndexInclusive + n - n_offset,  n_offset);
2929
                n = offset;
2930 7 1. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
2. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
3. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
4. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
5. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
6. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
7. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
                offset -= n_offset;
2931 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
            } else if (offset < n_offset) {
2932 14 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
3. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
4. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
5. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
8. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
9. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
10. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
11. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
12. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
13. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
14. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
                swap(array, startIndexInclusive, startIndexInclusive + n_offset,  offset);
2933 7 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
3. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
4. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
5. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
6. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
                startIndexInclusive += offset;
2934
                n = n_offset;
2935
            } else {
2936 14 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
3. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
4. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
5. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
8. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
9. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
10. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
11. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
12. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
13. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
14. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
                swap(array, startIndexInclusive, startIndexInclusive + n_offset, offset);
2937
                break;
2938
            }
2939
        }
2940
    }
2941
2942
    /**
2943
     * Shifts the order of a series of elements in the given int array.
2944
     *
2945
     * <p>There is no special handling for multi-dimensional arrays. This method
2946
     * does nothing for {@code null} or empty input arrays.</p>
2947
     *
2948
     * @param array
2949
     *            the array to shift, may be {@code null}
2950
     * @param startIndexInclusive
2951
     *            the starting index. Undervalue (&lt;0) is promoted to 0, overvalue (&gt;array.length) results in no
2952
     *            change.
2953
     * @param endIndexExclusive
2954
     *            elements up to endIndex-1 are shiftd in the array. Undervalue (&lt; start index) results in no
2955
     *            change. Overvalue (&gt;array.length) is demoted to array length.
2956
     * @param offset
2957
     *          The number of positions to rotate the elements.  If the offset is larger than the number of elements to
2958
     *          rotate, than the effective offset is modulo the number of elements to rotate.
2959
     * @since 3.5
2960
     */
2961
    public static void shift(final int[] array, int startIndexInclusive, int endIndexExclusive, int offset) {
2962 7 1. shift : negated conditional → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : negated conditional → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : negated conditional → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : negated conditional → NOT_SCHEDULED
        if (array == null) {
2963
            return;
2964
        }
2965 35 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : changed conditional boundary → NOT_SCHEDULED
3. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : negated conditional → NOT_SCHEDULED
6. shift : changed conditional boundary → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
9. shift : negated conditional → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : changed conditional boundary → SURVIVED
13. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
15. shift : negated conditional → NOT_SCHEDULED
16. shift : changed conditional boundary → NOT_SCHEDULED
17. shift : changed conditional boundary → SURVIVED
18. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
19. shift : negated conditional → NOT_SCHEDULED
20. shift : negated conditional → NOT_SCHEDULED
21. shift : changed conditional boundary → NOT_SCHEDULED
22. shift : changed conditional boundary → SURVIVED
23. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
24. shift : negated conditional → NOT_SCHEDULED
25. shift : negated conditional → NOT_SCHEDULED
26. shift : changed conditional boundary → NOT_SCHEDULED
27. shift : changed conditional boundary → SURVIVED
28. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
29. shift : negated conditional → NOT_SCHEDULED
30. shift : negated conditional → NOT_SCHEDULED
31. shift : changed conditional boundary → NOT_SCHEDULED
32. shift : changed conditional boundary → SURVIVED
33. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
34. shift : negated conditional → NOT_SCHEDULED
35. shift : negated conditional → NOT_SCHEDULED
        if (startIndexInclusive >= array.length - 1 || endIndexExclusive <= 0) {
2966
            return;
2967
        }
2968 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
        if (startIndexInclusive < 0) {
2969
            startIndexInclusive = 0;
2970
        } 
2971 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
        if (endIndexExclusive >= array.length) {
2972
            endIndexExclusive = array.length;
2973
        }        
2974 7 1. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
2. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
3. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
4. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
5. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
6. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
7. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
        int n = endIndexExclusive - startIndexInclusive;
2975 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
        if (n <= 1) {
2976
            return;
2977
        }
2978 7 1. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
2. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
3. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
4. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
5. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
6. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
7. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
        offset %= n;
2979 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : negated conditional → NOT_SCHEDULED
14. shift : changed conditional boundary → TIMED_OUT
        if (offset < 0) {
2980 7 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
3. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
4. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
5. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
6. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
            offset += n;
2981
        }
2982
        // For algorithm explanations and proof of O(n) time complexity and O(1) space complexity
2983
        // see https://beradrian.wordpress.com/2015/04/07/shift-an-array-in-on-in-place/
2984 28 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : changed conditional boundary → NOT_SCHEDULED
3. shift : negated conditional → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : changed conditional boundary → NOT_SCHEDULED
7. shift : negated conditional → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : changed conditional boundary → NOT_SCHEDULED
11. shift : negated conditional → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : changed conditional boundary → NOT_SCHEDULED
15. shift : negated conditional → NOT_SCHEDULED
16. shift : negated conditional → NOT_SCHEDULED
17. shift : changed conditional boundary → NOT_SCHEDULED
18. shift : changed conditional boundary → NOT_SCHEDULED
19. shift : negated conditional → NOT_SCHEDULED
20. shift : negated conditional → NOT_SCHEDULED
21. shift : changed conditional boundary → NOT_SCHEDULED
22. shift : changed conditional boundary → NOT_SCHEDULED
23. shift : negated conditional → NOT_SCHEDULED
24. shift : negated conditional → NOT_SCHEDULED
25. shift : changed conditional boundary → NOT_SCHEDULED
26. shift : changed conditional boundary → NOT_SCHEDULED
27. shift : negated conditional → NOT_SCHEDULED
28. shift : negated conditional → NOT_SCHEDULED
        while (n > 1 && offset > 0) {
2985 7 1. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
2. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
3. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
4. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
5. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
6. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
7. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
            int n_offset = n - offset;
2986
            
2987 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
            if (offset > n_offset) {
2988 21 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
3. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
4. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
5. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
8. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
9. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
10. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
11. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
12. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
13. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
14. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
15. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
16. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
17. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
18. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
19. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
20. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
21. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
                swap(array, startIndexInclusive, startIndexInclusive + n - n_offset,  n_offset);
2989
                n = offset;
2990 7 1. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
2. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
3. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
4. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
5. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
6. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
7. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
                offset -= n_offset;
2991 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
            } else if (offset < n_offset) {
2992 14 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
3. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
4. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
5. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
8. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
9. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
10. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
11. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
12. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
13. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
14. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
                swap(array, startIndexInclusive, startIndexInclusive + n_offset,  offset);
2993 7 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
3. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
4. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
5. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
6. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
                startIndexInclusive += offset;
2994
                n = n_offset;
2995
            } else {
2996 14 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
3. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
4. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
5. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
8. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
9. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
10. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
11. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
12. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
13. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
14. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
                swap(array, startIndexInclusive, startIndexInclusive + n_offset, offset);
2997
                break;
2998
            }
2999
        }
3000
    }
3001
3002
    /**
3003
     * Shifts the order of a series of elements in the given long array.
3004
     *
3005
     * <p>There is no special handling for multi-dimensional arrays. This method
3006
     * does nothing for {@code null} or empty input arrays.</p>
3007
     *
3008
     * @param array
3009
     *            the array to shift, may be {@code null}
3010
     * @param startIndexInclusive
3011
     *            the starting index. Undervalue (&lt;0) is promoted to 0, overvalue (&gt;array.length) results in no
3012
     *            change.
3013
     * @param endIndexExclusive
3014
     *            elements up to endIndex-1 are shiftd in the array. Undervalue (&lt; start index) results in no
3015
     *            change. Overvalue (&gt;array.length) is demoted to array length.
3016
     * @param offset
3017
     *          The number of positions to rotate the elements.  If the offset is larger than the number of elements to
3018
     *          rotate, than the effective offset is modulo the number of elements to rotate.
3019
     * @since 3.5
3020
     */
3021
    public static void shift(final long[] array, int startIndexInclusive, int endIndexExclusive, int offset) {
3022 7 1. shift : negated conditional → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : negated conditional → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : negated conditional → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : negated conditional → NOT_SCHEDULED
        if (array == null) {
3023
            return;
3024
        }
3025 35 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : changed conditional boundary → NOT_SCHEDULED
3. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : negated conditional → NOT_SCHEDULED
6. shift : changed conditional boundary → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
9. shift : negated conditional → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : changed conditional boundary → NOT_SCHEDULED
13. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
15. shift : negated conditional → NOT_SCHEDULED
16. shift : changed conditional boundary → NOT_SCHEDULED
17. shift : changed conditional boundary → NOT_SCHEDULED
18. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
19. shift : negated conditional → NOT_SCHEDULED
20. shift : negated conditional → NOT_SCHEDULED
21. shift : changed conditional boundary → NOT_SCHEDULED
22. shift : changed conditional boundary → NOT_SCHEDULED
23. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
24. shift : negated conditional → NOT_SCHEDULED
25. shift : negated conditional → NOT_SCHEDULED
26. shift : changed conditional boundary → NOT_SCHEDULED
27. shift : changed conditional boundary → NOT_SCHEDULED
28. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
29. shift : negated conditional → NOT_SCHEDULED
30. shift : negated conditional → NOT_SCHEDULED
31. shift : changed conditional boundary → NOT_SCHEDULED
32. shift : changed conditional boundary → NOT_SCHEDULED
33. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
34. shift : negated conditional → NOT_SCHEDULED
35. shift : negated conditional → NOT_SCHEDULED
        if (startIndexInclusive >= array.length - 1 || endIndexExclusive <= 0) {
3026
            return;
3027
        }
3028 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
        if (startIndexInclusive < 0) {
3029
            startIndexInclusive = 0;
3030
        } 
3031 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
        if (endIndexExclusive >= array.length) {
3032
            endIndexExclusive = array.length;
3033
        }        
3034 7 1. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
2. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
3. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
4. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
5. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
6. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
7. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
        int n = endIndexExclusive - startIndexInclusive;
3035 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
        if (n <= 1) {
3036
            return;
3037
        }
3038 7 1. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
2. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
3. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
4. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
5. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
6. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
7. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
        offset %= n;
3039 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
        if (offset < 0) {
3040 7 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
3. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
4. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
5. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
6. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
            offset += n;
3041
        }
3042
        // For algorithm explanations and proof of O(n) time complexity and O(1) space complexity
3043
        // see https://beradrian.wordpress.com/2015/04/07/shift-an-array-in-on-in-place/
3044 28 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : changed conditional boundary → NOT_SCHEDULED
3. shift : negated conditional → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : changed conditional boundary → NOT_SCHEDULED
7. shift : negated conditional → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : changed conditional boundary → NOT_SCHEDULED
11. shift : negated conditional → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : changed conditional boundary → NOT_SCHEDULED
15. shift : negated conditional → NOT_SCHEDULED
16. shift : negated conditional → NOT_SCHEDULED
17. shift : changed conditional boundary → NOT_SCHEDULED
18. shift : changed conditional boundary → NOT_SCHEDULED
19. shift : negated conditional → NOT_SCHEDULED
20. shift : negated conditional → NOT_SCHEDULED
21. shift : changed conditional boundary → NOT_SCHEDULED
22. shift : changed conditional boundary → NOT_SCHEDULED
23. shift : negated conditional → NOT_SCHEDULED
24. shift : negated conditional → NOT_SCHEDULED
25. shift : changed conditional boundary → NOT_SCHEDULED
26. shift : changed conditional boundary → NOT_SCHEDULED
27. shift : negated conditional → NOT_SCHEDULED
28. shift : negated conditional → NOT_SCHEDULED
        while (n > 1 && offset > 0) {
3045 7 1. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
2. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
3. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
4. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
5. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
6. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
7. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
            int n_offset = n - offset;
3046
            
3047 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
            if (offset > n_offset) {
3048 21 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
3. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
4. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
5. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
8. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
9. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
10. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
11. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
12. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
13. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
14. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
15. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
16. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
17. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
18. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
19. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
20. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
21. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
                swap(array, startIndexInclusive, startIndexInclusive + n - n_offset,  n_offset);
3049
                n = offset;
3050 7 1. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
2. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
3. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
4. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
5. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
6. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
7. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
                offset -= n_offset;
3051 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
            } else if (offset < n_offset) {
3052 14 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
3. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
4. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
5. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
8. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
9. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
10. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
11. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
12. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
13. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
14. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
                swap(array, startIndexInclusive, startIndexInclusive + n_offset,  offset);
3053 7 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
3. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
4. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
5. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
6. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
                startIndexInclusive += offset;
3054
                n = n_offset;
3055
            } else {
3056 14 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
3. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
4. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
5. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
8. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
9. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
10. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
11. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
12. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
13. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
14. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
                swap(array, startIndexInclusive, startIndexInclusive + n_offset, offset);
3057
                break;
3058
            }
3059
        }
3060
    }
3061
3062
    /**
3063
     * Shifts the order of a series of elements in the given array.
3064
     *
3065
     * <p>There is no special handling for multi-dimensional arrays. This method
3066
     * does nothing for {@code null} or empty input arrays.</p>
3067
     *
3068
     * @param array
3069
     *            the array to shift, may be {@code null}
3070
     * @param startIndexInclusive
3071
     *            the starting index. Undervalue (&lt;0) is promoted to 0, overvalue (&gt;array.length) results in no
3072
     *            change.
3073
     * @param endIndexExclusive
3074
     *            elements up to endIndex-1 are shiftd in the array. Undervalue (&lt; start index) results in no
3075
     *            change. Overvalue (&gt;array.length) is demoted to array length.
3076
     * @param offset
3077
     *          The number of positions to rotate the elements.  If the offset is larger than the number of elements to
3078
     *          rotate, than the effective offset is modulo the number of elements to rotate.
3079
     * @since 3.5
3080
     */
3081
    public static void shift(final Object[] array, int startIndexInclusive, int endIndexExclusive, int offset) {
3082 7 1. shift : negated conditional → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : negated conditional → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : negated conditional → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : negated conditional → NOT_SCHEDULED
        if (array == null) {
3083
            return;
3084
        }
3085 35 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : changed conditional boundary → NOT_SCHEDULED
3. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : negated conditional → NOT_SCHEDULED
6. shift : changed conditional boundary → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
9. shift : negated conditional → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : changed conditional boundary → NOT_SCHEDULED
13. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
15. shift : negated conditional → NOT_SCHEDULED
16. shift : changed conditional boundary → NOT_SCHEDULED
17. shift : changed conditional boundary → NOT_SCHEDULED
18. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
19. shift : negated conditional → NOT_SCHEDULED
20. shift : negated conditional → NOT_SCHEDULED
21. shift : changed conditional boundary → NOT_SCHEDULED
22. shift : changed conditional boundary → NOT_SCHEDULED
23. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
24. shift : negated conditional → NOT_SCHEDULED
25. shift : negated conditional → NOT_SCHEDULED
26. shift : changed conditional boundary → NOT_SCHEDULED
27. shift : changed conditional boundary → NOT_SCHEDULED
28. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
29. shift : negated conditional → NOT_SCHEDULED
30. shift : negated conditional → NOT_SCHEDULED
31. shift : changed conditional boundary → NOT_SCHEDULED
32. shift : changed conditional boundary → NOT_SCHEDULED
33. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
34. shift : negated conditional → NOT_SCHEDULED
35. shift : negated conditional → NOT_SCHEDULED
        if (startIndexInclusive >= array.length - 1 || endIndexExclusive <= 0) {
3086
            return;
3087
        }
3088 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
        if (startIndexInclusive < 0) {
3089
            startIndexInclusive = 0;
3090
        } 
3091 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
        if (endIndexExclusive >= array.length) {
3092
            endIndexExclusive = array.length;
3093
        }        
3094 7 1. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
2. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
3. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
4. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
5. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
6. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
7. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
        int n = endIndexExclusive - startIndexInclusive;
3095 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
        if (n <= 1) {
3096
            return;
3097
        }
3098 7 1. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
2. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
3. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
4. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
5. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
6. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
7. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
        offset %= n;
3099 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
        if (offset < 0) {
3100 7 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
3. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
4. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
5. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
6. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
            offset += n;
3101
        }
3102
        // For algorithm explanations and proof of O(n) time complexity and O(1) space complexity
3103
        // see https://beradrian.wordpress.com/2015/04/07/shift-an-array-in-on-in-place/
3104 28 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : changed conditional boundary → NOT_SCHEDULED
3. shift : negated conditional → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : changed conditional boundary → NOT_SCHEDULED
7. shift : negated conditional → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : changed conditional boundary → NOT_SCHEDULED
11. shift : negated conditional → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : changed conditional boundary → NOT_SCHEDULED
15. shift : negated conditional → NOT_SCHEDULED
16. shift : negated conditional → NOT_SCHEDULED
17. shift : changed conditional boundary → NOT_SCHEDULED
18. shift : changed conditional boundary → NOT_SCHEDULED
19. shift : negated conditional → NOT_SCHEDULED
20. shift : negated conditional → NOT_SCHEDULED
21. shift : changed conditional boundary → NOT_SCHEDULED
22. shift : changed conditional boundary → NOT_SCHEDULED
23. shift : negated conditional → NOT_SCHEDULED
24. shift : negated conditional → NOT_SCHEDULED
25. shift : changed conditional boundary → NOT_SCHEDULED
26. shift : changed conditional boundary → NOT_SCHEDULED
27. shift : negated conditional → NOT_SCHEDULED
28. shift : negated conditional → NOT_SCHEDULED
        while (n > 1 && offset > 0) {
3105 7 1. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
2. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
3. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
4. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
5. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
6. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
7. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
            int n_offset = n - offset;
3106
            
3107 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
            if (offset > n_offset) {
3108 21 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
3. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
4. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
5. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
8. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
9. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
10. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
11. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
12. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
13. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
14. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
15. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
16. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
17. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
18. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
19. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
20. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
21. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
                swap(array, startIndexInclusive, startIndexInclusive + n - n_offset,  n_offset);
3109
                n = offset;
3110 7 1. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
2. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
3. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
4. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
5. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
6. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
7. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
                offset -= n_offset;
3111 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
            } else if (offset < n_offset) {
3112 14 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
3. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
4. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
5. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
8. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
9. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
10. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
11. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
12. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
13. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
14. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
                swap(array, startIndexInclusive, startIndexInclusive + n_offset,  offset);
3113 7 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
3. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
4. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
5. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
6. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
                startIndexInclusive += offset;
3114
                n = n_offset;
3115
            } else {
3116 14 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
3. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
4. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
5. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
8. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
9. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
10. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
11. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
12. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
13. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
14. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
                swap(array, startIndexInclusive, startIndexInclusive + n_offset, offset);
3117
                break;
3118
            }
3119
        }
3120
    }
3121
3122
    /**
3123
     * Shifts the order of a series of elements in the given short array.
3124
     *
3125
     * <p>There is no special handling for multi-dimensional arrays. This method
3126
     * does nothing for {@code null} or empty input arrays.</p>
3127
     *
3128
     * @param array
3129
     *            the array to shift, may be {@code null}
3130
     * @param startIndexInclusive
3131
     *            the starting index. Undervalue (&lt;0) is promoted to 0, overvalue (&gt;array.length) results in no
3132
     *            change.
3133
     * @param endIndexExclusive
3134
     *            elements up to endIndex-1 are shifted in the array. Undervalue (&lt; start index) results in no
3135
     *            change. Overvalue (&gt;array.length) is demoted to array length.
3136
     * @param offset
3137
     *          The number of positions to rotate the elements.  If the offset is larger than the number of elements to
3138
     *          rotate, than the effective offset is modulo the number of elements to rotate.
3139
     * @since 3.5
3140
     */
3141
    public static void shift(final short[] array, int startIndexInclusive, int endIndexExclusive, int offset) {
3142 7 1. shift : negated conditional → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : negated conditional → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : negated conditional → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : negated conditional → NOT_SCHEDULED
        if (array == null) {
3143
            return;
3144
        }
3145 35 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : changed conditional boundary → NOT_SCHEDULED
3. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : negated conditional → NOT_SCHEDULED
6. shift : changed conditional boundary → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
9. shift : negated conditional → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : changed conditional boundary → NOT_SCHEDULED
13. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
15. shift : negated conditional → NOT_SCHEDULED
16. shift : changed conditional boundary → NOT_SCHEDULED
17. shift : changed conditional boundary → NOT_SCHEDULED
18. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
19. shift : negated conditional → NOT_SCHEDULED
20. shift : negated conditional → NOT_SCHEDULED
21. shift : changed conditional boundary → NOT_SCHEDULED
22. shift : changed conditional boundary → NOT_SCHEDULED
23. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
24. shift : negated conditional → NOT_SCHEDULED
25. shift : negated conditional → NOT_SCHEDULED
26. shift : changed conditional boundary → NOT_SCHEDULED
27. shift : changed conditional boundary → NOT_SCHEDULED
28. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
29. shift : negated conditional → NOT_SCHEDULED
30. shift : negated conditional → NOT_SCHEDULED
31. shift : changed conditional boundary → NOT_SCHEDULED
32. shift : changed conditional boundary → NOT_SCHEDULED
33. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
34. shift : negated conditional → NOT_SCHEDULED
35. shift : negated conditional → NOT_SCHEDULED
        if (startIndexInclusive >= array.length - 1 || endIndexExclusive <= 0) {
3146
            return;
3147
        }
3148 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
        if (startIndexInclusive < 0) {
3149
            startIndexInclusive = 0;
3150
        } 
3151 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
        if (endIndexExclusive >= array.length) {
3152
            endIndexExclusive = array.length;
3153
        }        
3154 7 1. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
2. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
3. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
4. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
5. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
6. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
7. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
        int n = endIndexExclusive - startIndexInclusive;
3155 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
        if (n <= 1) {
3156
            return;
3157
        }
3158 7 1. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
2. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
3. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
4. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
5. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
6. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
7. shift : Replaced integer modulus with multiplication → NOT_SCHEDULED
        offset %= n;
3159 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : changed conditional boundary → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : changed conditional boundary → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → TIMED_OUT
11. shift : negated conditional → TIMED_OUT
12. shift : negated conditional → TIMED_OUT
13. shift : negated conditional → TIMED_OUT
14. shift : negated conditional → TIMED_OUT
        if (offset < 0) {
3160 7 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
3. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
4. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
5. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
6. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
            offset += n;
3161
        }
3162
        // For algorithm explanations and proof of O(n) time complexity and O(1) space complexity
3163
        // see https://beradrian.wordpress.com/2015/04/07/shift-an-array-in-on-in-place/
3164 28 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : changed conditional boundary → NOT_SCHEDULED
3. shift : negated conditional → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : changed conditional boundary → NOT_SCHEDULED
7. shift : negated conditional → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : changed conditional boundary → NOT_SCHEDULED
11. shift : negated conditional → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : changed conditional boundary → NOT_SCHEDULED
15. shift : negated conditional → NOT_SCHEDULED
16. shift : negated conditional → NOT_SCHEDULED
17. shift : changed conditional boundary → NOT_SCHEDULED
18. shift : changed conditional boundary → NOT_SCHEDULED
19. shift : negated conditional → NOT_SCHEDULED
20. shift : negated conditional → NOT_SCHEDULED
21. shift : changed conditional boundary → NOT_SCHEDULED
22. shift : changed conditional boundary → NOT_SCHEDULED
23. shift : negated conditional → NOT_SCHEDULED
24. shift : negated conditional → NOT_SCHEDULED
25. shift : changed conditional boundary → NOT_SCHEDULED
26. shift : changed conditional boundary → NOT_SCHEDULED
27. shift : negated conditional → NOT_SCHEDULED
28. shift : negated conditional → NOT_SCHEDULED
        while (n > 1 && offset > 0) {
3165 7 1. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
2. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
3. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
4. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
5. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
6. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
7. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
            int n_offset = n - offset;
3166
            
3167 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
            if (offset > n_offset) {
3168 21 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
3. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
4. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
5. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
7. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
8. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
9. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
10. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
11. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
12. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
13. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
14. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
15. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
16. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
17. shift : Replaced integer addition with subtraction → KILLED
18. shift : Replaced integer addition with subtraction → KILLED
19. shift : Replaced integer addition with subtraction → KILLED
20. shift : Replaced integer addition with subtraction → KILLED
21. shift : Replaced integer addition with subtraction → KILLED
                swap(array, startIndexInclusive, startIndexInclusive + n - n_offset,  n_offset);
3169
                n = offset;
3170 7 1. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
2. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
3. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
4. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
5. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
6. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
7. shift : Replaced integer subtraction with addition → NOT_SCHEDULED
                offset -= n_offset;
3171 14 1. shift : changed conditional boundary → NOT_SCHEDULED
2. shift : negated conditional → NOT_SCHEDULED
3. shift : changed conditional boundary → NOT_SCHEDULED
4. shift : negated conditional → NOT_SCHEDULED
5. shift : changed conditional boundary → NOT_SCHEDULED
6. shift : negated conditional → NOT_SCHEDULED
7. shift : changed conditional boundary → NOT_SCHEDULED
8. shift : negated conditional → NOT_SCHEDULED
9. shift : changed conditional boundary → NOT_SCHEDULED
10. shift : negated conditional → NOT_SCHEDULED
11. shift : changed conditional boundary → NOT_SCHEDULED
12. shift : negated conditional → NOT_SCHEDULED
13. shift : changed conditional boundary → NOT_SCHEDULED
14. shift : negated conditional → NOT_SCHEDULED
            } else if (offset < n_offset) {
3172 14 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
3. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
4. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
5. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
8. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
9. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
10. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
11. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
12. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
13. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
14. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
                swap(array, startIndexInclusive, startIndexInclusive + n_offset,  offset);
3173 7 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
3. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
4. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
5. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
6. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
                startIndexInclusive += offset;
3174
                n = n_offset;
3175
            } else {
3176 14 1. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
2. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
3. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
4. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
5. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
6. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
7. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
8. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
9. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
10. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
11. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
12. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
13. shift : Replaced integer addition with subtraction → NOT_SCHEDULED
14. shift : removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED
                swap(array, startIndexInclusive, startIndexInclusive + n_offset, offset);
3177
                break;
3178
            }
3179
        }
3180
    }
3181
3182
    // IndexOf search
3183
    // ----------------------------------------------------------------------
3184
3185
    // Object IndexOf
3186
    //-----------------------------------------------------------------------
3187
    /**
3188
     * <p>Finds the index of the given object in the array.
3189
     *
3190
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
3191
     *
3192
     * @param array  the array to search through for the object, may be {@code null}
3193
     * @param objectToFind  the object to find, may be {@code null}
3194
     * @return the index of the object within the array,
3195
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
3196
     */
3197
    public static int indexOf(final Object[] array, final Object objectToFind) {
3198 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return indexOf(array, objectToFind, 0);
3199
    }
3200
3201
    /**
3202
     * <p>Finds the index of the given object in the array starting at the given index.
3203
     *
3204
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
3205
     *
3206
     * <p>A negative startIndex is treated as zero. A startIndex larger than the array
3207
     * length will return {@link #INDEX_NOT_FOUND} ({@code -1}).
3208
     *
3209
     * @param array  the array to search through for the object, may be {@code null}
3210
     * @param objectToFind  the object to find, may be {@code null}
3211
     * @param startIndex  the index to start searching at
3212
     * @return the index of the object within the array starting at the index,
3213
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
3214
     */
3215
    public static int indexOf(final Object[] array, final Object objectToFind, int startIndex) {
3216 7 1. indexOf : negated conditional → NOT_SCHEDULED
2. indexOf : negated conditional → NOT_SCHEDULED
3. indexOf : negated conditional → NOT_SCHEDULED
4. indexOf : negated conditional → NOT_SCHEDULED
5. indexOf : negated conditional → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : negated conditional → NOT_SCHEDULED
        if (array == null) {
3217 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return INDEX_NOT_FOUND;
3218
        }
3219 14 1. indexOf : changed conditional boundary → NOT_SCHEDULED
2. indexOf : negated conditional → NOT_SCHEDULED
3. indexOf : changed conditional boundary → NOT_SCHEDULED
4. indexOf : negated conditional → NOT_SCHEDULED
5. indexOf : changed conditional boundary → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : changed conditional boundary → NOT_SCHEDULED
8. indexOf : negated conditional → NOT_SCHEDULED
9. indexOf : changed conditional boundary → NOT_SCHEDULED
10. indexOf : negated conditional → NOT_SCHEDULED
11. indexOf : changed conditional boundary → NOT_SCHEDULED
12. indexOf : negated conditional → NOT_SCHEDULED
13. indexOf : changed conditional boundary → NOT_SCHEDULED
14. indexOf : negated conditional → NOT_SCHEDULED
        if (startIndex < 0) {
3220
            startIndex = 0;
3221
        }
3222 7 1. indexOf : negated conditional → NOT_SCHEDULED
2. indexOf : negated conditional → NOT_SCHEDULED
3. indexOf : negated conditional → NOT_SCHEDULED
4. indexOf : negated conditional → NOT_SCHEDULED
5. indexOf : negated conditional → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : negated conditional → NOT_SCHEDULED
        if (objectToFind == null) {
3223 21 1. indexOf : changed conditional boundary → NOT_SCHEDULED
2. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
3. indexOf : negated conditional → NOT_SCHEDULED
4. indexOf : changed conditional boundary → NOT_SCHEDULED
5. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : changed conditional boundary → NOT_SCHEDULED
8. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
9. indexOf : negated conditional → NOT_SCHEDULED
10. indexOf : changed conditional boundary → NOT_SCHEDULED
11. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
12. indexOf : negated conditional → NOT_SCHEDULED
13. indexOf : changed conditional boundary → NOT_SCHEDULED
14. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
15. indexOf : negated conditional → NOT_SCHEDULED
16. indexOf : changed conditional boundary → NOT_SCHEDULED
17. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
18. indexOf : negated conditional → NOT_SCHEDULED
19. indexOf : changed conditional boundary → NOT_SCHEDULED
20. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
21. indexOf : negated conditional → NOT_SCHEDULED
            for (int i = startIndex; i < array.length; i++) {
3224 7 1. indexOf : negated conditional → NOT_SCHEDULED
2. indexOf : negated conditional → NOT_SCHEDULED
3. indexOf : negated conditional → NOT_SCHEDULED
4. indexOf : negated conditional → NOT_SCHEDULED
5. indexOf : negated conditional → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : negated conditional → NOT_SCHEDULED
                if (array[i] == null) {
3225 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
                    return i;
3226
                }
3227
            }
3228
        } else {
3229 21 1. indexOf : changed conditional boundary → NOT_SCHEDULED
2. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
3. indexOf : negated conditional → NOT_SCHEDULED
4. indexOf : changed conditional boundary → NOT_SCHEDULED
5. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
8. indexOf : negated conditional → NOT_SCHEDULED
9. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
10. indexOf : negated conditional → NOT_SCHEDULED
11. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
12. indexOf : negated conditional → NOT_SCHEDULED
13. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
14. indexOf : negated conditional → NOT_SCHEDULED
15. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
16. indexOf : negated conditional → NOT_SCHEDULED
17. indexOf : changed conditional boundary → KILLED
18. indexOf : changed conditional boundary → KILLED
19. indexOf : changed conditional boundary → KILLED
20. indexOf : changed conditional boundary → KILLED
21. indexOf : changed conditional boundary → KILLED
            for (int i = startIndex; i < array.length; i++) {
3230 7 1. indexOf : negated conditional → NOT_SCHEDULED
2. indexOf : negated conditional → NOT_SCHEDULED
3. indexOf : negated conditional → NOT_SCHEDULED
4. indexOf : negated conditional → NOT_SCHEDULED
5. indexOf : negated conditional → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : negated conditional → NOT_SCHEDULED
                if (objectToFind.equals(array[i])) {
3231 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
                    return i;
3232
                }
3233
            }
3234
        }
3235 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return INDEX_NOT_FOUND;
3236
    }
3237
3238
    /**
3239
     * <p>Finds the last index of the given object within the array.
3240
     *
3241
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
3242
     *
3243
     * @param array  the array to travers backwords looking for the object, may be {@code null}
3244
     * @param objectToFind  the object to find, may be {@code null}
3245
     * @return the last index of the object within the array,
3246
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
3247
     */
3248
    public static int lastIndexOf(final Object[] array, final Object objectToFind) {
3249 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return lastIndexOf(array, objectToFind, Integer.MAX_VALUE);
3250
    }
3251
3252
    /**
3253
     * <p>Finds the last index of the given object in the array starting at the given index.
3254
     *
3255
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
3256
     *
3257
     * <p>A negative startIndex will return {@link #INDEX_NOT_FOUND} ({@code -1}). A startIndex larger than
3258
     * the array length will search from the end of the array.
3259
     *
3260
     * @param array  the array to traverse for looking for the object, may be {@code null}
3261
     * @param objectToFind  the object to find, may be {@code null}
3262
     * @param startIndex  the start index to travers backwards from
3263
     * @return the last index of the object within the array,
3264
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
3265
     */
3266
    public static int lastIndexOf(final Object[] array, final Object objectToFind, int startIndex) {
3267 7 1. lastIndexOf : negated conditional → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : negated conditional → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : negated conditional → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : negated conditional → NOT_SCHEDULED
        if (array == null) {
3268 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return INDEX_NOT_FOUND;
3269
        }
3270 14 1. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
8. lastIndexOf : negated conditional → NOT_SCHEDULED
9. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
10. lastIndexOf : negated conditional → NOT_SCHEDULED
11. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
12. lastIndexOf : negated conditional → NOT_SCHEDULED
13. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
14. lastIndexOf : negated conditional → NOT_SCHEDULED
        if (startIndex < 0) {
3271 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return INDEX_NOT_FOUND;
3272 14 1. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
8. lastIndexOf : negated conditional → NOT_SCHEDULED
9. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
10. lastIndexOf : negated conditional → NOT_SCHEDULED
11. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
12. lastIndexOf : negated conditional → NOT_SCHEDULED
13. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
14. lastIndexOf : negated conditional → NOT_SCHEDULED
        } else if (startIndex >= array.length) {
3273 7 1. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
2. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
3. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
4. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
5. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
6. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
7. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
            startIndex = array.length - 1;
3274
        }
3275 7 1. lastIndexOf : negated conditional → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : negated conditional → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : negated conditional → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : negated conditional → NOT_SCHEDULED
        if (objectToFind == null) {
3276 21 1. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
2. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
3. lastIndexOf : negated conditional → NOT_SCHEDULED
4. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
5. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
8. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
9. lastIndexOf : negated conditional → NOT_SCHEDULED
10. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
11. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
12. lastIndexOf : negated conditional → NOT_SCHEDULED
13. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
14. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
15. lastIndexOf : negated conditional → NOT_SCHEDULED
16. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
17. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
18. lastIndexOf : negated conditional → NOT_SCHEDULED
19. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
20. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
21. lastIndexOf : negated conditional → NOT_SCHEDULED
            for (int i = startIndex; i >= 0; i--) {
3277 7 1. lastIndexOf : negated conditional → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : negated conditional → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : negated conditional → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : negated conditional → NOT_SCHEDULED
                if (array[i] == null) {
3278 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
                    return i;
3279
                }
3280
            }
3281 7 1. lastIndexOf : negated conditional → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : negated conditional → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : negated conditional → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : negated conditional → NOT_SCHEDULED
        } else if (array.getClass().getComponentType().isInstance(objectToFind)) {
3282 21 1. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
2. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
3. lastIndexOf : negated conditional → NOT_SCHEDULED
4. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
5. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
8. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
9. lastIndexOf : negated conditional → NOT_SCHEDULED
10. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
11. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
12. lastIndexOf : negated conditional → NOT_SCHEDULED
13. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
14. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
15. lastIndexOf : negated conditional → NOT_SCHEDULED
16. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
17. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
18. lastIndexOf : negated conditional → NOT_SCHEDULED
19. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
20. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
21. lastIndexOf : negated conditional → NOT_SCHEDULED
            for (int i = startIndex; i >= 0; i--) {
3283 7 1. lastIndexOf : negated conditional → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : negated conditional → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : negated conditional → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : negated conditional → NOT_SCHEDULED
                if (objectToFind.equals(array[i])) {
3284 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
                    return i;
3285
                }
3286
            }
3287
        }
3288 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return INDEX_NOT_FOUND;
3289
    }
3290
3291
    /**
3292
     * <p>Checks if the object is in the given array.
3293
     *
3294
     * <p>The method returns {@code false} if a {@code null} array is passed in.
3295
     *
3296
     * @param array  the array to search through
3297
     * @param objectToFind  the object to find
3298
     * @return {@code true} if the array contains the object
3299
     */
3300
    public static boolean contains(final Object[] array, final Object objectToFind) {
3301 14 1. contains : negated conditional → NOT_SCHEDULED
2. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. contains : negated conditional → NOT_SCHEDULED
4. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. contains : negated conditional → NOT_SCHEDULED
6. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. contains : negated conditional → NOT_SCHEDULED
8. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. contains : negated conditional → NOT_SCHEDULED
10. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. contains : negated conditional → NOT_SCHEDULED
12. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. contains : negated conditional → NOT_SCHEDULED
14. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return indexOf(array, objectToFind) != INDEX_NOT_FOUND;
3302
    }
3303
3304
    // long IndexOf
3305
    //-----------------------------------------------------------------------
3306
    /**
3307
     * <p>Finds the index of the given value in the array.
3308
     *
3309
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
3310
     *
3311
     * @param array  the array to search through for the object, may be {@code null}
3312
     * @param valueToFind  the value to find
3313
     * @return the index of the value within the array,
3314
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
3315
     */
3316
    public static int indexOf(final long[] array, final long valueToFind) {
3317 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return indexOf(array, valueToFind, 0);
3318
    }
3319
3320
    /**
3321
     * <p>Finds the index of the given value in the array starting at the given index.
3322
     *
3323
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
3324
     *
3325
     * <p>A negative startIndex is treated as zero. A startIndex larger than the array
3326
     * length will return {@link #INDEX_NOT_FOUND} ({@code -1}).
3327
     *
3328
     * @param array  the array to search through for the object, may be {@code null}
3329
     * @param valueToFind  the value to find
3330
     * @param startIndex  the index to start searching at
3331
     * @return the index of the value within the array,
3332
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
3333
     */
3334
    public static int indexOf(final long[] array, final long valueToFind, int startIndex) {
3335 7 1. indexOf : negated conditional → NOT_SCHEDULED
2. indexOf : negated conditional → NOT_SCHEDULED
3. indexOf : negated conditional → NOT_SCHEDULED
4. indexOf : negated conditional → NOT_SCHEDULED
5. indexOf : negated conditional → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : negated conditional → NOT_SCHEDULED
        if (array == null) {
3336 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return INDEX_NOT_FOUND;
3337
        }
3338 14 1. indexOf : changed conditional boundary → NOT_SCHEDULED
2. indexOf : negated conditional → NOT_SCHEDULED
3. indexOf : changed conditional boundary → NOT_SCHEDULED
4. indexOf : negated conditional → NOT_SCHEDULED
5. indexOf : changed conditional boundary → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : changed conditional boundary → NOT_SCHEDULED
8. indexOf : negated conditional → NOT_SCHEDULED
9. indexOf : changed conditional boundary → NOT_SCHEDULED
10. indexOf : negated conditional → NOT_SCHEDULED
11. indexOf : changed conditional boundary → SURVIVED
12. indexOf : negated conditional → NOT_SCHEDULED
13. indexOf : changed conditional boundary → SURVIVED
14. indexOf : negated conditional → NOT_SCHEDULED
        if (startIndex < 0) {
3339
            startIndex = 0;
3340
        }
3341 21 1. indexOf : changed conditional boundary → NOT_SCHEDULED
2. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
3. indexOf : negated conditional → NOT_SCHEDULED
4. indexOf : changed conditional boundary → NOT_SCHEDULED
5. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : changed conditional boundary → NOT_SCHEDULED
8. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
9. indexOf : negated conditional → NOT_SCHEDULED
10. indexOf : changed conditional boundary → NOT_SCHEDULED
11. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
12. indexOf : negated conditional → NOT_SCHEDULED
13. indexOf : changed conditional boundary → NOT_SCHEDULED
14. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
15. indexOf : negated conditional → NOT_SCHEDULED
16. indexOf : changed conditional boundary → NOT_SCHEDULED
17. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
18. indexOf : negated conditional → NOT_SCHEDULED
19. indexOf : changed conditional boundary → NOT_SCHEDULED
20. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
21. indexOf : negated conditional → NOT_SCHEDULED
        for (int i = startIndex; i < array.length; i++) {
3342 7 1. indexOf : negated conditional → NOT_SCHEDULED
2. indexOf : negated conditional → NOT_SCHEDULED
3. indexOf : negated conditional → NOT_SCHEDULED
4. indexOf : negated conditional → NOT_SCHEDULED
5. indexOf : negated conditional → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : negated conditional → NOT_SCHEDULED
            if (valueToFind == array[i]) {
3343 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
                return i;
3344
            }
3345
        }
3346 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return INDEX_NOT_FOUND;
3347
    }
3348
3349
    /**
3350
     * <p>Finds the last index of the given value within the array.
3351
     *
3352
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
3353
     *
3354
     * @param array  the array to travers backwords looking for the object, may be {@code null}
3355
     * @param valueToFind  the object to find
3356
     * @return the last index of the value within the array,
3357
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
3358
     */
3359
    public static int lastIndexOf(final long[] array, final long valueToFind) {
3360 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return lastIndexOf(array, valueToFind, Integer.MAX_VALUE);
3361
    }
3362
3363
    /**
3364
     * <p>Finds the last index of the given value in the array starting at the given index.
3365
     *
3366
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
3367
     *
3368
     * <p>A negative startIndex will return {@link #INDEX_NOT_FOUND} ({@code -1}). A startIndex larger than the
3369
     * array length will search from the end of the array.
3370
     *
3371
     * @param array  the array to traverse for looking for the object, may be {@code null}
3372
     * @param valueToFind  the value to find
3373
     * @param startIndex  the start index to travers backwards from
3374
     * @return the last index of the value within the array,
3375
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
3376
     */
3377
    public static int lastIndexOf(final long[] array, final long valueToFind, int startIndex) {
3378 7 1. lastIndexOf : negated conditional → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : negated conditional → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : negated conditional → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : negated conditional → NOT_SCHEDULED
        if (array == null) {
3379 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return INDEX_NOT_FOUND;
3380
        }
3381 14 1. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
8. lastIndexOf : negated conditional → NOT_SCHEDULED
9. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
10. lastIndexOf : negated conditional → NOT_SCHEDULED
11. lastIndexOf : changed conditional boundary → SURVIVED
12. lastIndexOf : negated conditional → NOT_SCHEDULED
13. lastIndexOf : changed conditional boundary → SURVIVED
14. lastIndexOf : negated conditional → NOT_SCHEDULED
        if (startIndex < 0) {
3382 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return INDEX_NOT_FOUND;
3383 14 1. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
8. lastIndexOf : negated conditional → NOT_SCHEDULED
9. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
10. lastIndexOf : negated conditional → NOT_SCHEDULED
11. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
12. lastIndexOf : negated conditional → NOT_SCHEDULED
13. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
14. lastIndexOf : negated conditional → NOT_SCHEDULED
        } else if (startIndex >= array.length) {
3384 7 1. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
2. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
3. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
4. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
5. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
6. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
7. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
            startIndex = array.length - 1;
3385
        }
3386 21 1. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
2. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
3. lastIndexOf : negated conditional → NOT_SCHEDULED
4. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
5. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
8. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
9. lastIndexOf : negated conditional → NOT_SCHEDULED
10. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
11. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
12. lastIndexOf : negated conditional → NOT_SCHEDULED
13. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
14. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
15. lastIndexOf : negated conditional → NOT_SCHEDULED
16. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
17. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
18. lastIndexOf : negated conditional → NOT_SCHEDULED
19. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
20. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
21. lastIndexOf : negated conditional → NOT_SCHEDULED
        for (int i = startIndex; i >= 0; i--) {
3387 7 1. lastIndexOf : negated conditional → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : negated conditional → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : negated conditional → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : negated conditional → NOT_SCHEDULED
            if (valueToFind == array[i]) {
3388 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
                return i;
3389
            }
3390
        }
3391 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return INDEX_NOT_FOUND;
3392
    }
3393
3394
    /**
3395
     * <p>Checks if the value is in the given array.
3396
     *
3397
     * <p>The method returns {@code false} if a {@code null} array is passed in.
3398
     *
3399
     * @param array  the array to search through
3400
     * @param valueToFind  the value to find
3401
     * @return {@code true} if the array contains the object
3402
     */
3403
    public static boolean contains(final long[] array, final long valueToFind) {
3404 14 1. contains : negated conditional → NOT_SCHEDULED
2. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. contains : negated conditional → NOT_SCHEDULED
4. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. contains : negated conditional → NOT_SCHEDULED
6. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. contains : negated conditional → NOT_SCHEDULED
8. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. contains : negated conditional → NOT_SCHEDULED
10. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. contains : negated conditional → NOT_SCHEDULED
12. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. contains : negated conditional → NOT_SCHEDULED
14. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return indexOf(array, valueToFind) != INDEX_NOT_FOUND;
3405
    }
3406
3407
    // int IndexOf
3408
    //-----------------------------------------------------------------------
3409
    /**
3410
     * <p>Finds the index of the given value in the array.
3411
     *
3412
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
3413
     *
3414
     * @param array  the array to search through for the object, may be {@code null}
3415
     * @param valueToFind  the value to find
3416
     * @return the index of the value within the array,
3417
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
3418
     */
3419
    public static int indexOf(final int[] array, final int valueToFind) {
3420 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return indexOf(array, valueToFind, 0);
3421
    }
3422
3423
    /**
3424
     * <p>Finds the index of the given value in the array starting at the given index.
3425
     *
3426
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
3427
     *
3428
     * <p>A negative startIndex is treated as zero. A startIndex larger than the array
3429
     * length will return {@link #INDEX_NOT_FOUND} ({@code -1}).
3430
     *
3431
     * @param array  the array to search through for the object, may be {@code null}
3432
     * @param valueToFind  the value to find
3433
     * @param startIndex  the index to start searching at
3434
     * @return the index of the value within the array,
3435
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
3436
     */
3437
    public static int indexOf(final int[] array, final int valueToFind, int startIndex) {
3438 7 1. indexOf : negated conditional → NOT_SCHEDULED
2. indexOf : negated conditional → NOT_SCHEDULED
3. indexOf : negated conditional → NOT_SCHEDULED
4. indexOf : negated conditional → NOT_SCHEDULED
5. indexOf : negated conditional → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : negated conditional → NOT_SCHEDULED
        if (array == null) {
3439 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return INDEX_NOT_FOUND;
3440
        }
3441 14 1. indexOf : changed conditional boundary → NOT_SCHEDULED
2. indexOf : negated conditional → NOT_SCHEDULED
3. indexOf : changed conditional boundary → NOT_SCHEDULED
4. indexOf : negated conditional → NOT_SCHEDULED
5. indexOf : changed conditional boundary → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : changed conditional boundary → NOT_SCHEDULED
8. indexOf : negated conditional → NOT_SCHEDULED
9. indexOf : changed conditional boundary → NOT_SCHEDULED
10. indexOf : negated conditional → NOT_SCHEDULED
11. indexOf : changed conditional boundary → NOT_SCHEDULED
12. indexOf : negated conditional → NOT_SCHEDULED
13. indexOf : changed conditional boundary → NOT_SCHEDULED
14. indexOf : negated conditional → NOT_SCHEDULED
        if (startIndex < 0) {
3442
            startIndex = 0;
3443
        }
3444 21 1. indexOf : changed conditional boundary → NOT_SCHEDULED
2. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
3. indexOf : negated conditional → NOT_SCHEDULED
4. indexOf : changed conditional boundary → NOT_SCHEDULED
5. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : changed conditional boundary → NOT_SCHEDULED
8. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
9. indexOf : negated conditional → NOT_SCHEDULED
10. indexOf : changed conditional boundary → NOT_SCHEDULED
11. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
12. indexOf : negated conditional → NOT_SCHEDULED
13. indexOf : changed conditional boundary → NOT_SCHEDULED
14. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
15. indexOf : negated conditional → NOT_SCHEDULED
16. indexOf : changed conditional boundary → NOT_SCHEDULED
17. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
18. indexOf : negated conditional → NOT_SCHEDULED
19. indexOf : changed conditional boundary → NOT_SCHEDULED
20. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
21. indexOf : negated conditional → NOT_SCHEDULED
        for (int i = startIndex; i < array.length; i++) {
3445 7 1. indexOf : negated conditional → NOT_SCHEDULED
2. indexOf : negated conditional → NOT_SCHEDULED
3. indexOf : negated conditional → NOT_SCHEDULED
4. indexOf : negated conditional → NOT_SCHEDULED
5. indexOf : negated conditional → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : negated conditional → NOT_SCHEDULED
            if (valueToFind == array[i]) {
3446 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
                return i;
3447
            }
3448
        }
3449 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return INDEX_NOT_FOUND;
3450
    }
3451
3452
    /**
3453
     * <p>Finds the last index of the given value within the array.
3454
     *
3455
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
3456
     *
3457
     * @param array  the array to travers backwords looking for the object, may be {@code null}
3458
     * @param valueToFind  the object to find
3459
     * @return the last index of the value within the array,
3460
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
3461
     */
3462
    public static int lastIndexOf(final int[] array, final int valueToFind) {
3463 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return lastIndexOf(array, valueToFind, Integer.MAX_VALUE);
3464
    }
3465
3466
    /**
3467
     * <p>Finds the last index of the given value in the array starting at the given index.
3468
     *
3469
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
3470
     *
3471
     * <p>A negative startIndex will return {@link #INDEX_NOT_FOUND} ({@code -1}). A startIndex larger than the
3472
     * array length will search from the end of the array.
3473
     *
3474
     * @param array  the array to traverse for looking for the object, may be {@code null}
3475
     * @param valueToFind  the value to find
3476
     * @param startIndex  the start index to travers backwards from
3477
     * @return the last index of the value within the array,
3478
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
3479
     */
3480
    public static int lastIndexOf(final int[] array, final int valueToFind, int startIndex) {
3481 7 1. lastIndexOf : negated conditional → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : negated conditional → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : negated conditional → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : negated conditional → NOT_SCHEDULED
        if (array == null) {
3482 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return INDEX_NOT_FOUND;
3483
        }
3484 14 1. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
8. lastIndexOf : negated conditional → NOT_SCHEDULED
9. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
10. lastIndexOf : negated conditional → NOT_SCHEDULED
11. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
12. lastIndexOf : negated conditional → NOT_SCHEDULED
13. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
14. lastIndexOf : negated conditional → NOT_SCHEDULED
        if (startIndex < 0) {
3485 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return INDEX_NOT_FOUND;
3486 14 1. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
8. lastIndexOf : negated conditional → NOT_SCHEDULED
9. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
10. lastIndexOf : negated conditional → NOT_SCHEDULED
11. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
12. lastIndexOf : negated conditional → NOT_SCHEDULED
13. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
14. lastIndexOf : negated conditional → NOT_SCHEDULED
        } else if (startIndex >= array.length) {
3487 7 1. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
2. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
3. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
4. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
5. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
6. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
7. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
            startIndex = array.length - 1;
3488
        }
3489 21 1. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
2. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
3. lastIndexOf : negated conditional → NOT_SCHEDULED
4. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
5. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
8. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
9. lastIndexOf : negated conditional → NOT_SCHEDULED
10. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
11. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
12. lastIndexOf : negated conditional → NOT_SCHEDULED
13. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
14. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
15. lastIndexOf : negated conditional → NOT_SCHEDULED
16. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
17. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
18. lastIndexOf : negated conditional → NOT_SCHEDULED
19. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
20. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
21. lastIndexOf : negated conditional → NOT_SCHEDULED
        for (int i = startIndex; i >= 0; i--) {
3490 7 1. lastIndexOf : negated conditional → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : negated conditional → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : negated conditional → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : negated conditional → NOT_SCHEDULED
            if (valueToFind == array[i]) {
3491 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
                return i;
3492
            }
3493
        }
3494 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return INDEX_NOT_FOUND;
3495
    }
3496
3497
    /**
3498
     * <p>Checks if the value is in the given array.
3499
     *
3500
     * <p>The method returns {@code false} if a {@code null} array is passed in.
3501
     *
3502
     * @param array  the array to search through
3503
     * @param valueToFind  the value to find
3504
     * @return {@code true} if the array contains the object
3505
     */
3506
    public static boolean contains(final int[] array, final int valueToFind) {
3507 14 1. contains : negated conditional → NOT_SCHEDULED
2. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. contains : negated conditional → NOT_SCHEDULED
4. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. contains : negated conditional → NOT_SCHEDULED
6. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. contains : negated conditional → NOT_SCHEDULED
8. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. contains : negated conditional → NOT_SCHEDULED
10. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. contains : negated conditional → NOT_SCHEDULED
12. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. contains : negated conditional → NOT_SCHEDULED
14. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return indexOf(array, valueToFind) != INDEX_NOT_FOUND;
3508
    }
3509
3510
    // short IndexOf
3511
    //-----------------------------------------------------------------------
3512
    /**
3513
     * <p>Finds the index of the given value in the array.
3514
     *
3515
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
3516
     *
3517
     * @param array  the array to search through for the object, may be {@code null}
3518
     * @param valueToFind  the value to find
3519
     * @return the index of the value within the array,
3520
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
3521
     */
3522
    public static int indexOf(final short[] array, final short valueToFind) {
3523 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return indexOf(array, valueToFind, 0);
3524
    }
3525
3526
    /**
3527
     * <p>Finds the index of the given value in the array starting at the given index.
3528
     *
3529
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
3530
     *
3531
     * <p>A negative startIndex is treated as zero. A startIndex larger than the array
3532
     * length will return {@link #INDEX_NOT_FOUND} ({@code -1}).
3533
     *
3534
     * @param array  the array to search through for the object, may be {@code null}
3535
     * @param valueToFind  the value to find
3536
     * @param startIndex  the index to start searching at
3537
     * @return the index of the value within the array,
3538
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
3539
     */
3540
    public static int indexOf(final short[] array, final short valueToFind, int startIndex) {
3541 7 1. indexOf : negated conditional → NOT_SCHEDULED
2. indexOf : negated conditional → NOT_SCHEDULED
3. indexOf : negated conditional → NOT_SCHEDULED
4. indexOf : negated conditional → NOT_SCHEDULED
5. indexOf : negated conditional → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : negated conditional → NOT_SCHEDULED
        if (array == null) {
3542 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return INDEX_NOT_FOUND;
3543
        }
3544 14 1. indexOf : changed conditional boundary → NOT_SCHEDULED
2. indexOf : negated conditional → NOT_SCHEDULED
3. indexOf : changed conditional boundary → NOT_SCHEDULED
4. indexOf : negated conditional → NOT_SCHEDULED
5. indexOf : changed conditional boundary → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : changed conditional boundary → NOT_SCHEDULED
8. indexOf : negated conditional → NOT_SCHEDULED
9. indexOf : changed conditional boundary → NOT_SCHEDULED
10. indexOf : negated conditional → NOT_SCHEDULED
11. indexOf : changed conditional boundary → NOT_SCHEDULED
12. indexOf : negated conditional → NOT_SCHEDULED
13. indexOf : changed conditional boundary → NOT_SCHEDULED
14. indexOf : negated conditional → NOT_SCHEDULED
        if (startIndex < 0) {
3545
            startIndex = 0;
3546
        }
3547 21 1. indexOf : changed conditional boundary → NOT_SCHEDULED
2. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
3. indexOf : negated conditional → NOT_SCHEDULED
4. indexOf : changed conditional boundary → NOT_SCHEDULED
5. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : changed conditional boundary → NOT_SCHEDULED
8. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
9. indexOf : negated conditional → NOT_SCHEDULED
10. indexOf : changed conditional boundary → NOT_SCHEDULED
11. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
12. indexOf : negated conditional → NOT_SCHEDULED
13. indexOf : changed conditional boundary → NOT_SCHEDULED
14. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
15. indexOf : negated conditional → NOT_SCHEDULED
16. indexOf : changed conditional boundary → NOT_SCHEDULED
17. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
18. indexOf : negated conditional → NOT_SCHEDULED
19. indexOf : changed conditional boundary → NOT_SCHEDULED
20. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
21. indexOf : negated conditional → NOT_SCHEDULED
        for (int i = startIndex; i < array.length; i++) {
3548 7 1. indexOf : negated conditional → NOT_SCHEDULED
2. indexOf : negated conditional → NOT_SCHEDULED
3. indexOf : negated conditional → NOT_SCHEDULED
4. indexOf : negated conditional → NOT_SCHEDULED
5. indexOf : negated conditional → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : negated conditional → NOT_SCHEDULED
            if (valueToFind == array[i]) {
3549 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
                return i;
3550
            }
3551
        }
3552 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return INDEX_NOT_FOUND;
3553
    }
3554
3555
    /**
3556
     * <p>Finds the last index of the given value within the array.
3557
     *
3558
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
3559
     *
3560
     * @param array  the array to travers backwords looking for the object, may be {@code null}
3561
     * @param valueToFind  the object to find
3562
     * @return the last index of the value within the array,
3563
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
3564
     */
3565
    public static int lastIndexOf(final short[] array, final short valueToFind) {
3566 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return lastIndexOf(array, valueToFind, Integer.MAX_VALUE);
3567
    }
3568
3569
    /**
3570
     * <p>Finds the last index of the given value in the array starting at the given index.
3571
     *
3572
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
3573
     *
3574
     * <p>A negative startIndex will return {@link #INDEX_NOT_FOUND} ({@code -1}). A startIndex larger than the
3575
     * array length will search from the end of the array.
3576
     *
3577
     * @param array  the array to traverse for looking for the object, may be {@code null}
3578
     * @param valueToFind  the value to find
3579
     * @param startIndex  the start index to travers backwards from
3580
     * @return the last index of the value within the array,
3581
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
3582
     */
3583
    public static int lastIndexOf(final short[] array, final short valueToFind, int startIndex) {
3584 7 1. lastIndexOf : negated conditional → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : negated conditional → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : negated conditional → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : negated conditional → NOT_SCHEDULED
        if (array == null) {
3585 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return INDEX_NOT_FOUND;
3586
        }
3587 14 1. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
8. lastIndexOf : negated conditional → NOT_SCHEDULED
9. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
10. lastIndexOf : negated conditional → NOT_SCHEDULED
11. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
12. lastIndexOf : negated conditional → NOT_SCHEDULED
13. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
14. lastIndexOf : negated conditional → NOT_SCHEDULED
        if (startIndex < 0) {
3588 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return INDEX_NOT_FOUND;
3589 14 1. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
8. lastIndexOf : negated conditional → NOT_SCHEDULED
9. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
10. lastIndexOf : negated conditional → NOT_SCHEDULED
11. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
12. lastIndexOf : negated conditional → NOT_SCHEDULED
13. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
14. lastIndexOf : negated conditional → NOT_SCHEDULED
        } else if (startIndex >= array.length) {
3590 7 1. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
2. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
3. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
4. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
5. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
6. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
7. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
            startIndex = array.length - 1;
3591
        }
3592 21 1. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
2. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
3. lastIndexOf : negated conditional → NOT_SCHEDULED
4. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
5. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
8. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
9. lastIndexOf : negated conditional → NOT_SCHEDULED
10. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
11. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
12. lastIndexOf : negated conditional → NOT_SCHEDULED
13. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
14. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
15. lastIndexOf : negated conditional → NOT_SCHEDULED
16. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
17. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
18. lastIndexOf : negated conditional → NOT_SCHEDULED
19. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
20. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
21. lastIndexOf : negated conditional → NOT_SCHEDULED
        for (int i = startIndex; i >= 0; i--) {
3593 7 1. lastIndexOf : negated conditional → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : negated conditional → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : negated conditional → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : negated conditional → NOT_SCHEDULED
            if (valueToFind == array[i]) {
3594 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
                return i;
3595
            }
3596
        }
3597 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
        return INDEX_NOT_FOUND;
3598
    }
3599
3600
    /**
3601
     * <p>Checks if the value is in the given array.
3602
     *
3603
     * <p>The method returns {@code false} if a {@code null} array is passed in.
3604
     *
3605
     * @param array  the array to search through
3606
     * @param valueToFind  the value to find
3607
     * @return {@code true} if the array contains the object
3608
     */
3609
    public static boolean contains(final short[] array, final short valueToFind) {
3610 14 1. contains : negated conditional → NOT_SCHEDULED
2. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. contains : negated conditional → NOT_SCHEDULED
4. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. contains : negated conditional → NOT_SCHEDULED
6. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. contains : negated conditional → NOT_SCHEDULED
8. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. contains : negated conditional → NOT_SCHEDULED
10. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. contains : negated conditional → NOT_SCHEDULED
12. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. contains : negated conditional → NOT_SCHEDULED
14. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return indexOf(array, valueToFind) != INDEX_NOT_FOUND;
3611
    }
3612
3613
    // char IndexOf
3614
    //-----------------------------------------------------------------------
3615
    /**
3616
     * <p>Finds the index of the given value in the array.
3617
     *
3618
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
3619
     *
3620
     * @param array  the array to search through for the object, may be {@code null}
3621
     * @param valueToFind  the value to find
3622
     * @return the index of the value within the array,
3623
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
3624
     * @since 2.1
3625
     */
3626
    public static int indexOf(final char[] array, final char valueToFind) {
3627 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return indexOf(array, valueToFind, 0);
3628
    }
3629
3630
    /**
3631
     * <p>Finds the index of the given value in the array starting at the given index.
3632
     *
3633
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
3634
     *
3635
     * <p>A negative startIndex is treated as zero. A startIndex larger than the array
3636
     * length will return {@link #INDEX_NOT_FOUND} ({@code -1}).
3637
     *
3638
     * @param array  the array to search through for the object, may be {@code null}
3639
     * @param valueToFind  the value to find
3640
     * @param startIndex  the index to start searching at
3641
     * @return the index of the value within the array,
3642
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
3643
     * @since 2.1
3644
     */
3645
    public static int indexOf(final char[] array, final char valueToFind, int startIndex) {
3646 7 1. indexOf : negated conditional → NOT_SCHEDULED
2. indexOf : negated conditional → NOT_SCHEDULED
3. indexOf : negated conditional → NOT_SCHEDULED
4. indexOf : negated conditional → NOT_SCHEDULED
5. indexOf : negated conditional → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : negated conditional → NOT_SCHEDULED
        if (array == null) {
3647 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return INDEX_NOT_FOUND;
3648
        }
3649 14 1. indexOf : changed conditional boundary → NOT_SCHEDULED
2. indexOf : negated conditional → NOT_SCHEDULED
3. indexOf : changed conditional boundary → NOT_SCHEDULED
4. indexOf : negated conditional → NOT_SCHEDULED
5. indexOf : changed conditional boundary → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : changed conditional boundary → NOT_SCHEDULED
8. indexOf : negated conditional → NOT_SCHEDULED
9. indexOf : changed conditional boundary → NOT_SCHEDULED
10. indexOf : negated conditional → NOT_SCHEDULED
11. indexOf : changed conditional boundary → NOT_SCHEDULED
12. indexOf : negated conditional → NOT_SCHEDULED
13. indexOf : changed conditional boundary → NOT_SCHEDULED
14. indexOf : negated conditional → NOT_SCHEDULED
        if (startIndex < 0) {
3650
            startIndex = 0;
3651
        }
3652 21 1. indexOf : changed conditional boundary → NOT_SCHEDULED
2. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
3. indexOf : negated conditional → NOT_SCHEDULED
4. indexOf : changed conditional boundary → NOT_SCHEDULED
5. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : changed conditional boundary → NOT_SCHEDULED
8. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
9. indexOf : negated conditional → NOT_SCHEDULED
10. indexOf : changed conditional boundary → NOT_SCHEDULED
11. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
12. indexOf : negated conditional → NOT_SCHEDULED
13. indexOf : changed conditional boundary → NOT_SCHEDULED
14. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
15. indexOf : negated conditional → NOT_SCHEDULED
16. indexOf : changed conditional boundary → NOT_SCHEDULED
17. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
18. indexOf : negated conditional → NOT_SCHEDULED
19. indexOf : changed conditional boundary → NOT_SCHEDULED
20. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
21. indexOf : negated conditional → NOT_SCHEDULED
        for (int i = startIndex; i < array.length; i++) {
3653 7 1. indexOf : negated conditional → NOT_SCHEDULED
2. indexOf : negated conditional → NOT_SCHEDULED
3. indexOf : negated conditional → NOT_SCHEDULED
4. indexOf : negated conditional → NOT_SCHEDULED
5. indexOf : negated conditional → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : negated conditional → NOT_SCHEDULED
            if (valueToFind == array[i]) {
3654 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
                return i;
3655
            }
3656
        }
3657 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return INDEX_NOT_FOUND;
3658
    }
3659
3660
    /**
3661
     * <p>Finds the last index of the given value within the array.
3662
     *
3663
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
3664
     *
3665
     * @param array  the array to travers backwords looking for the object, may be {@code null}
3666
     * @param valueToFind  the object to find
3667
     * @return the last index of the value within the array,
3668
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
3669
     * @since 2.1
3670
     */
3671
    public static int lastIndexOf(final char[] array, final char valueToFind) {
3672 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return lastIndexOf(array, valueToFind, Integer.MAX_VALUE);
3673
    }
3674
3675
    /**
3676
     * <p>Finds the last index of the given value in the array starting at the given index.
3677
     *
3678
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
3679
     *
3680
     * <p>A negative startIndex will return {@link #INDEX_NOT_FOUND} ({@code -1}). A startIndex larger than the
3681
     * array length will search from the end of the array.
3682
     *
3683
     * @param array  the array to traverse for looking for the object, may be {@code null}
3684
     * @param valueToFind  the value to find
3685
     * @param startIndex  the start index to travers backwards from
3686
     * @return the last index of the value within the array,
3687
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
3688
     * @since 2.1
3689
     */
3690
    public static int lastIndexOf(final char[] array, final char valueToFind, int startIndex) {
3691 7 1. lastIndexOf : negated conditional → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : negated conditional → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : negated conditional → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : negated conditional → NOT_SCHEDULED
        if (array == null) {
3692 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return INDEX_NOT_FOUND;
3693
        }
3694 14 1. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
8. lastIndexOf : negated conditional → NOT_SCHEDULED
9. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
10. lastIndexOf : negated conditional → NOT_SCHEDULED
11. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
12. lastIndexOf : negated conditional → NOT_SCHEDULED
13. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
14. lastIndexOf : negated conditional → NOT_SCHEDULED
        if (startIndex < 0) {
3695 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return INDEX_NOT_FOUND;
3696 14 1. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
8. lastIndexOf : negated conditional → NOT_SCHEDULED
9. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
10. lastIndexOf : negated conditional → NOT_SCHEDULED
11. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
12. lastIndexOf : negated conditional → NOT_SCHEDULED
13. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
14. lastIndexOf : negated conditional → NOT_SCHEDULED
        } else if (startIndex >= array.length) {
3697 7 1. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
2. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
3. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
4. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
5. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
6. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
7. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
            startIndex = array.length - 1;
3698
        }
3699 21 1. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
2. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
3. lastIndexOf : negated conditional → NOT_SCHEDULED
4. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
5. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
8. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
9. lastIndexOf : negated conditional → NOT_SCHEDULED
10. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
11. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
12. lastIndexOf : negated conditional → NOT_SCHEDULED
13. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
14. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
15. lastIndexOf : negated conditional → NOT_SCHEDULED
16. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
17. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
18. lastIndexOf : negated conditional → NOT_SCHEDULED
19. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
20. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
21. lastIndexOf : negated conditional → NOT_SCHEDULED
        for (int i = startIndex; i >= 0; i--) {
3700 7 1. lastIndexOf : negated conditional → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : negated conditional → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : negated conditional → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : negated conditional → NOT_SCHEDULED
            if (valueToFind == array[i]) {
3701 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
                return i;
3702
            }
3703
        }
3704 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return INDEX_NOT_FOUND;
3705
    }
3706
3707
    /**
3708
     * <p>Checks if the value is in the given array.
3709
     *
3710
     * <p>The method returns {@code false} if a {@code null} array is passed in.
3711
     *
3712
     * @param array  the array to search through
3713
     * @param valueToFind  the value to find
3714
     * @return {@code true} if the array contains the object
3715
     * @since 2.1
3716
     */
3717
    public static boolean contains(final char[] array, final char valueToFind) {
3718 14 1. contains : negated conditional → NOT_SCHEDULED
2. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. contains : negated conditional → NOT_SCHEDULED
4. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. contains : negated conditional → NOT_SCHEDULED
6. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. contains : negated conditional → NOT_SCHEDULED
8. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. contains : negated conditional → NOT_SCHEDULED
10. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. contains : negated conditional → NOT_SCHEDULED
12. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. contains : negated conditional → NOT_SCHEDULED
14. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return indexOf(array, valueToFind) != INDEX_NOT_FOUND;
3719
    }
3720
3721
    // byte IndexOf
3722
    //-----------------------------------------------------------------------
3723
    /**
3724
     * <p>Finds the index of the given value in the array.
3725
     *
3726
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
3727
     *
3728
     * @param array  the array to search through for the object, may be {@code null}
3729
     * @param valueToFind  the value to find
3730
     * @return the index of the value within the array,
3731
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
3732
     */
3733
    public static int indexOf(final byte[] array, final byte valueToFind) {
3734 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return indexOf(array, valueToFind, 0);
3735
    }
3736
3737
    /**
3738
     * <p>Finds the index of the given value in the array starting at the given index.
3739
     *
3740
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
3741
     *
3742
     * <p>A negative startIndex is treated as zero. A startIndex larger than the array
3743
     * length will return {@link #INDEX_NOT_FOUND} ({@code -1}).
3744
     *
3745
     * @param array  the array to search through for the object, may be {@code null}
3746
     * @param valueToFind  the value to find
3747
     * @param startIndex  the index to start searching at
3748
     * @return the index of the value within the array,
3749
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
3750
     */
3751
    public static int indexOf(final byte[] array, final byte valueToFind, int startIndex) {
3752 7 1. indexOf : negated conditional → NOT_SCHEDULED
2. indexOf : negated conditional → NOT_SCHEDULED
3. indexOf : negated conditional → NOT_SCHEDULED
4. indexOf : negated conditional → NOT_SCHEDULED
5. indexOf : negated conditional → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : negated conditional → NOT_SCHEDULED
        if (array == null) {
3753 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return INDEX_NOT_FOUND;
3754
        }
3755 14 1. indexOf : changed conditional boundary → NOT_SCHEDULED
2. indexOf : negated conditional → NOT_SCHEDULED
3. indexOf : changed conditional boundary → NOT_SCHEDULED
4. indexOf : negated conditional → NOT_SCHEDULED
5. indexOf : changed conditional boundary → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : changed conditional boundary → NOT_SCHEDULED
8. indexOf : negated conditional → NOT_SCHEDULED
9. indexOf : changed conditional boundary → NOT_SCHEDULED
10. indexOf : negated conditional → NOT_SCHEDULED
11. indexOf : changed conditional boundary → NOT_SCHEDULED
12. indexOf : negated conditional → NOT_SCHEDULED
13. indexOf : changed conditional boundary → NOT_SCHEDULED
14. indexOf : negated conditional → NOT_SCHEDULED
        if (startIndex < 0) {
3756
            startIndex = 0;
3757
        }
3758 21 1. indexOf : changed conditional boundary → NOT_SCHEDULED
2. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
3. indexOf : negated conditional → NOT_SCHEDULED
4. indexOf : changed conditional boundary → NOT_SCHEDULED
5. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : changed conditional boundary → NOT_SCHEDULED
8. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
9. indexOf : negated conditional → NOT_SCHEDULED
10. indexOf : changed conditional boundary → NOT_SCHEDULED
11. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
12. indexOf : negated conditional → NOT_SCHEDULED
13. indexOf : changed conditional boundary → NOT_SCHEDULED
14. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
15. indexOf : negated conditional → NOT_SCHEDULED
16. indexOf : changed conditional boundary → NOT_SCHEDULED
17. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
18. indexOf : negated conditional → NOT_SCHEDULED
19. indexOf : changed conditional boundary → NOT_SCHEDULED
20. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
21. indexOf : negated conditional → NOT_SCHEDULED
        for (int i = startIndex; i < array.length; i++) {
3759 7 1. indexOf : negated conditional → NOT_SCHEDULED
2. indexOf : negated conditional → NOT_SCHEDULED
3. indexOf : negated conditional → NOT_SCHEDULED
4. indexOf : negated conditional → NOT_SCHEDULED
5. indexOf : negated conditional → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : negated conditional → NOT_SCHEDULED
            if (valueToFind == array[i]) {
3760 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
                return i;
3761
            }
3762
        }
3763 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return INDEX_NOT_FOUND;
3764
    }
3765
3766
    /**
3767
     * <p>Finds the last index of the given value within the array.
3768
     *
3769
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
3770
     *
3771
     * @param array  the array to travers backwords looking for the object, may be {@code null}
3772
     * @param valueToFind  the object to find
3773
     * @return the last index of the value within the array,
3774
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
3775
     */
3776
    public static int lastIndexOf(final byte[] array, final byte valueToFind) {
3777 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return lastIndexOf(array, valueToFind, Integer.MAX_VALUE);
3778
    }
3779
3780
    /**
3781
     * <p>Finds the last index of the given value in the array starting at the given index.
3782
     *
3783
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
3784
     *
3785
     * <p>A negative startIndex will return {@link #INDEX_NOT_FOUND} ({@code -1}). A startIndex larger than the
3786
     * array length will search from the end of the array.
3787
     *
3788
     * @param array  the array to traverse for looking for the object, may be {@code null}
3789
     * @param valueToFind  the value to find
3790
     * @param startIndex  the start index to travers backwards from
3791
     * @return the last index of the value within the array,
3792
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
3793
     */
3794
    public static int lastIndexOf(final byte[] array, final byte valueToFind, int startIndex) {
3795 7 1. lastIndexOf : negated conditional → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : negated conditional → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : negated conditional → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : negated conditional → NOT_SCHEDULED
        if (array == null) {
3796 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return INDEX_NOT_FOUND;
3797
        }
3798 14 1. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
8. lastIndexOf : negated conditional → NOT_SCHEDULED
9. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
10. lastIndexOf : negated conditional → NOT_SCHEDULED
11. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
12. lastIndexOf : negated conditional → NOT_SCHEDULED
13. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
14. lastIndexOf : negated conditional → NOT_SCHEDULED
        if (startIndex < 0) {
3799 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return INDEX_NOT_FOUND;
3800 14 1. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
8. lastIndexOf : negated conditional → NOT_SCHEDULED
9. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
10. lastIndexOf : negated conditional → NOT_SCHEDULED
11. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
12. lastIndexOf : negated conditional → NOT_SCHEDULED
13. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
14. lastIndexOf : negated conditional → NOT_SCHEDULED
        } else if (startIndex >= array.length) {
3801 7 1. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
2. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
3. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
4. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
5. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
6. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
7. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
            startIndex = array.length - 1;
3802
        }
3803 21 1. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
2. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
3. lastIndexOf : negated conditional → NOT_SCHEDULED
4. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
5. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
8. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
9. lastIndexOf : negated conditional → NOT_SCHEDULED
10. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
11. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
12. lastIndexOf : negated conditional → NOT_SCHEDULED
13. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
14. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
15. lastIndexOf : negated conditional → NOT_SCHEDULED
16. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
17. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
18. lastIndexOf : negated conditional → NOT_SCHEDULED
19. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
20. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
21. lastIndexOf : negated conditional → NOT_SCHEDULED
        for (int i = startIndex; i >= 0; i--) {
3804 7 1. lastIndexOf : negated conditional → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : negated conditional → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : negated conditional → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : negated conditional → NOT_SCHEDULED
            if (valueToFind == array[i]) {
3805 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
                return i;
3806
            }
3807
        }
3808 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return INDEX_NOT_FOUND;
3809
    }
3810
3811
    /**
3812
     * <p>Checks if the value is in the given array.
3813
     *
3814
     * <p>The method returns {@code false} if a {@code null} array is passed in.
3815
     *
3816
     * @param array  the array to search through
3817
     * @param valueToFind  the value to find
3818
     * @return {@code true} if the array contains the object
3819
     */
3820
    public static boolean contains(final byte[] array, final byte valueToFind) {
3821 14 1. contains : negated conditional → NOT_SCHEDULED
2. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. contains : negated conditional → NOT_SCHEDULED
4. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. contains : negated conditional → NOT_SCHEDULED
6. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. contains : negated conditional → NOT_SCHEDULED
8. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. contains : negated conditional → NOT_SCHEDULED
10. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. contains : negated conditional → NOT_SCHEDULED
12. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. contains : negated conditional → NOT_SCHEDULED
14. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return indexOf(array, valueToFind) != INDEX_NOT_FOUND;
3822
    }
3823
3824
    // double IndexOf
3825
    //-----------------------------------------------------------------------
3826
    /**
3827
     * <p>Finds the index of the given value in the array.
3828
     *
3829
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
3830
     *
3831
     * @param array  the array to search through for the object, may be {@code null}
3832
     * @param valueToFind  the value to find
3833
     * @return the index of the value within the array,
3834
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
3835
     */
3836
    public static int indexOf(final double[] array, final double valueToFind) {
3837 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return indexOf(array, valueToFind, 0);
3838
    }
3839
3840
    /**
3841
     * <p>Finds the index of the given value within a given tolerance in the array.
3842
     * This method will return the index of the first value which falls between the region
3843
     * defined by valueToFind - tolerance and valueToFind + tolerance.
3844
     *
3845
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
3846
     *
3847
     * @param array  the array to search through for the object, may be {@code null}
3848
     * @param valueToFind  the value to find
3849
     * @param tolerance tolerance of the search
3850
     * @return the index of the value within the array,
3851
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
3852
     */
3853
    public static int indexOf(final double[] array, final double valueToFind, final double tolerance) {
3854 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return indexOf(array, valueToFind, 0, tolerance);
3855
    }
3856
3857
    /**
3858
     * <p>Finds the index of the given value in the array starting at the given index.
3859
     *
3860
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
3861
     *
3862
     * <p>A negative startIndex is treated as zero. A startIndex larger than the array
3863
     * length will return {@link #INDEX_NOT_FOUND} ({@code -1}).
3864
     *
3865
     * @param array  the array to search through for the object, may be {@code null}
3866
     * @param valueToFind  the value to find
3867
     * @param startIndex  the index to start searching at
3868
     * @return the index of the value within the array,
3869
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
3870
     */
3871
    public static int indexOf(final double[] array, final double valueToFind, int startIndex) {
3872 7 1. indexOf : negated conditional → NOT_SCHEDULED
2. indexOf : negated conditional → NOT_SCHEDULED
3. indexOf : negated conditional → NOT_SCHEDULED
4. indexOf : negated conditional → NOT_SCHEDULED
5. indexOf : negated conditional → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : negated conditional → NOT_SCHEDULED
        if (ArrayUtils.isEmpty(array)) {
3873 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return INDEX_NOT_FOUND;
3874
        }
3875 14 1. indexOf : changed conditional boundary → NOT_SCHEDULED
2. indexOf : negated conditional → NOT_SCHEDULED
3. indexOf : changed conditional boundary → NOT_SCHEDULED
4. indexOf : negated conditional → NOT_SCHEDULED
5. indexOf : changed conditional boundary → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : changed conditional boundary → NOT_SCHEDULED
8. indexOf : negated conditional → NOT_SCHEDULED
9. indexOf : changed conditional boundary → NOT_SCHEDULED
10. indexOf : negated conditional → NOT_SCHEDULED
11. indexOf : changed conditional boundary → NOT_SCHEDULED
12. indexOf : negated conditional → NOT_SCHEDULED
13. indexOf : changed conditional boundary → NOT_SCHEDULED
14. indexOf : negated conditional → NOT_SCHEDULED
        if (startIndex < 0) {
3876
            startIndex = 0;
3877
        }
3878 21 1. indexOf : changed conditional boundary → NOT_SCHEDULED
2. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
3. indexOf : negated conditional → NOT_SCHEDULED
4. indexOf : changed conditional boundary → NOT_SCHEDULED
5. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : changed conditional boundary → NOT_SCHEDULED
8. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
9. indexOf : negated conditional → NOT_SCHEDULED
10. indexOf : changed conditional boundary → NOT_SCHEDULED
11. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
12. indexOf : negated conditional → NOT_SCHEDULED
13. indexOf : changed conditional boundary → NOT_SCHEDULED
14. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
15. indexOf : negated conditional → NOT_SCHEDULED
16. indexOf : changed conditional boundary → NOT_SCHEDULED
17. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
18. indexOf : negated conditional → NOT_SCHEDULED
19. indexOf : changed conditional boundary → NOT_SCHEDULED
20. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
21. indexOf : negated conditional → NOT_SCHEDULED
        for (int i = startIndex; i < array.length; i++) {
3879 7 1. indexOf : negated conditional → NOT_SCHEDULED
2. indexOf : negated conditional → NOT_SCHEDULED
3. indexOf : negated conditional → NOT_SCHEDULED
4. indexOf : negated conditional → NOT_SCHEDULED
5. indexOf : negated conditional → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : negated conditional → NOT_SCHEDULED
            if (valueToFind == array[i]) {
3880 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
                return i;
3881
            }
3882
        }
3883 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return INDEX_NOT_FOUND;
3884
    }
3885
3886
    /**
3887
     * <p>Finds the index of the given value in the array starting at the given index.
3888
     * This method will return the index of the first value which falls between the region
3889
     * defined by valueToFind - tolerance and valueToFind + tolerance.
3890
     *
3891
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
3892
     *
3893
     * <p>A negative startIndex is treated as zero. A startIndex larger than the array
3894
     * length will return {@link #INDEX_NOT_FOUND} ({@code -1}).
3895
     *
3896
     * @param array  the array to search through for the object, may be {@code null}
3897
     * @param valueToFind  the value to find
3898
     * @param startIndex  the index to start searching at
3899
     * @param tolerance tolerance of the search
3900
     * @return the index of the value within the array,
3901
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
3902
     */
3903
    public static int indexOf(final double[] array, final double valueToFind, int startIndex, final double tolerance) {
3904 7 1. indexOf : negated conditional → NOT_SCHEDULED
2. indexOf : negated conditional → NOT_SCHEDULED
3. indexOf : negated conditional → NOT_SCHEDULED
4. indexOf : negated conditional → NOT_SCHEDULED
5. indexOf : negated conditional → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : negated conditional → NOT_SCHEDULED
        if (ArrayUtils.isEmpty(array)) {
3905 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return INDEX_NOT_FOUND;
3906
        }
3907 14 1. indexOf : changed conditional boundary → NOT_SCHEDULED
2. indexOf : negated conditional → NOT_SCHEDULED
3. indexOf : changed conditional boundary → NOT_SCHEDULED
4. indexOf : negated conditional → NOT_SCHEDULED
5. indexOf : changed conditional boundary → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : changed conditional boundary → NOT_SCHEDULED
8. indexOf : negated conditional → NOT_SCHEDULED
9. indexOf : changed conditional boundary → NOT_SCHEDULED
10. indexOf : negated conditional → NOT_SCHEDULED
11. indexOf : changed conditional boundary → NOT_SCHEDULED
12. indexOf : negated conditional → NOT_SCHEDULED
13. indexOf : changed conditional boundary → NOT_SCHEDULED
14. indexOf : negated conditional → NOT_SCHEDULED
        if (startIndex < 0) {
3908
            startIndex = 0;
3909
        }
3910 7 1. indexOf : Replaced double subtraction with addition → NOT_SCHEDULED
2. indexOf : Replaced double subtraction with addition → NOT_SCHEDULED
3. indexOf : Replaced double subtraction with addition → NOT_SCHEDULED
4. indexOf : Replaced double subtraction with addition → NOT_SCHEDULED
5. indexOf : Replaced double subtraction with addition → NOT_SCHEDULED
6. indexOf : Replaced double subtraction with addition → NOT_SCHEDULED
7. indexOf : Replaced double subtraction with addition → NOT_SCHEDULED
        final double min = valueToFind - tolerance;
3911 7 1. indexOf : Replaced double addition with subtraction → NOT_SCHEDULED
2. indexOf : Replaced double addition with subtraction → NOT_SCHEDULED
3. indexOf : Replaced double addition with subtraction → NOT_SCHEDULED
4. indexOf : Replaced double addition with subtraction → NOT_SCHEDULED
5. indexOf : Replaced double addition with subtraction → NOT_SCHEDULED
6. indexOf : Replaced double addition with subtraction → NOT_SCHEDULED
7. indexOf : Replaced double addition with subtraction → NOT_SCHEDULED
        final double max = valueToFind + tolerance;
3912 21 1. indexOf : changed conditional boundary → NOT_SCHEDULED
2. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
3. indexOf : negated conditional → NOT_SCHEDULED
4. indexOf : changed conditional boundary → NOT_SCHEDULED
5. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : changed conditional boundary → NOT_SCHEDULED
8. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
9. indexOf : negated conditional → NOT_SCHEDULED
10. indexOf : changed conditional boundary → NOT_SCHEDULED
11. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
12. indexOf : negated conditional → NOT_SCHEDULED
13. indexOf : changed conditional boundary → NOT_SCHEDULED
14. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
15. indexOf : negated conditional → NOT_SCHEDULED
16. indexOf : changed conditional boundary → NOT_SCHEDULED
17. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
18. indexOf : negated conditional → NOT_SCHEDULED
19. indexOf : changed conditional boundary → NOT_SCHEDULED
20. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
21. indexOf : negated conditional → NOT_SCHEDULED
        for (int i = startIndex; i < array.length; i++) {
3913 28 1. indexOf : changed conditional boundary → NOT_SCHEDULED
2. indexOf : changed conditional boundary → NOT_SCHEDULED
3. indexOf : negated conditional → NOT_SCHEDULED
4. indexOf : negated conditional → NOT_SCHEDULED
5. indexOf : changed conditional boundary → NOT_SCHEDULED
6. indexOf : changed conditional boundary → NOT_SCHEDULED
7. indexOf : negated conditional → NOT_SCHEDULED
8. indexOf : negated conditional → NOT_SCHEDULED
9. indexOf : changed conditional boundary → NOT_SCHEDULED
10. indexOf : changed conditional boundary → NOT_SCHEDULED
11. indexOf : negated conditional → NOT_SCHEDULED
12. indexOf : negated conditional → NOT_SCHEDULED
13. indexOf : changed conditional boundary → NOT_SCHEDULED
14. indexOf : changed conditional boundary → SURVIVED
15. indexOf : negated conditional → NOT_SCHEDULED
16. indexOf : negated conditional → NOT_SCHEDULED
17. indexOf : changed conditional boundary → NOT_SCHEDULED
18. indexOf : changed conditional boundary → SURVIVED
19. indexOf : negated conditional → NOT_SCHEDULED
20. indexOf : negated conditional → NOT_SCHEDULED
21. indexOf : changed conditional boundary → NOT_SCHEDULED
22. indexOf : changed conditional boundary → SURVIVED
23. indexOf : negated conditional → NOT_SCHEDULED
24. indexOf : negated conditional → NOT_SCHEDULED
25. indexOf : changed conditional boundary → NOT_SCHEDULED
26. indexOf : changed conditional boundary → SURVIVED
27. indexOf : negated conditional → NOT_SCHEDULED
28. indexOf : negated conditional → NOT_SCHEDULED
            if (array[i] >= min && array[i] <= max) {
3914 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
                return i;
3915
            }
3916
        }
3917 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return INDEX_NOT_FOUND;
3918
    }
3919
3920
    /**
3921
     * <p>Finds the last index of the given value within the array.
3922
     *
3923
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
3924
     *
3925
     * @param array  the array to travers backwords looking for the object, may be {@code null}
3926
     * @param valueToFind  the object to find
3927
     * @return the last index of the value within the array,
3928
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
3929
     */
3930
    public static int lastIndexOf(final double[] array, final double valueToFind) {
3931 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return lastIndexOf(array, valueToFind, Integer.MAX_VALUE);
3932
    }
3933
3934
    /**
3935
     * <p>Finds the last index of the given value within a given tolerance in the array.
3936
     * This method will return the index of the last value which falls between the region
3937
     * defined by valueToFind - tolerance and valueToFind + tolerance.
3938
     *
3939
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
3940
     *
3941
     * @param array  the array to search through for the object, may be {@code null}
3942
     * @param valueToFind  the value to find
3943
     * @param tolerance tolerance of the search
3944
     * @return the index of the value within the array,
3945
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
3946
     */
3947
    public static int lastIndexOf(final double[] array, final double valueToFind, final double tolerance) {
3948 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return lastIndexOf(array, valueToFind, Integer.MAX_VALUE, tolerance);
3949
    }
3950
3951
    /**
3952
     * <p>Finds the last index of the given value in the array starting at the given index.
3953
     *
3954
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
3955
     *
3956
     * <p>A negative startIndex will return {@link #INDEX_NOT_FOUND} ({@code -1}). A startIndex larger than the
3957
     * array length will search from the end of the array.
3958
     *
3959
     * @param array  the array to traverse for looking for the object, may be {@code null}
3960
     * @param valueToFind  the value to find
3961
     * @param startIndex  the start index to travers backwards from
3962
     * @return the last index of the value within the array,
3963
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
3964
     */
3965
    public static int lastIndexOf(final double[] array, final double valueToFind, int startIndex) {
3966 7 1. lastIndexOf : negated conditional → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : negated conditional → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : negated conditional → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : negated conditional → NOT_SCHEDULED
        if (ArrayUtils.isEmpty(array)) {
3967 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return INDEX_NOT_FOUND;
3968
        }
3969 14 1. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
8. lastIndexOf : negated conditional → NOT_SCHEDULED
9. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
10. lastIndexOf : negated conditional → NOT_SCHEDULED
11. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
12. lastIndexOf : negated conditional → NOT_SCHEDULED
13. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
14. lastIndexOf : negated conditional → NOT_SCHEDULED
        if (startIndex < 0) {
3970 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return INDEX_NOT_FOUND;
3971 14 1. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
8. lastIndexOf : negated conditional → NOT_SCHEDULED
9. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
10. lastIndexOf : negated conditional → NOT_SCHEDULED
11. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
12. lastIndexOf : negated conditional → NOT_SCHEDULED
13. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
14. lastIndexOf : negated conditional → NOT_SCHEDULED
        } else if (startIndex >= array.length) {
3972 7 1. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
2. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
3. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
4. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
5. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
6. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
7. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
            startIndex = array.length - 1;
3973
        }
3974 21 1. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
2. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
3. lastIndexOf : negated conditional → NOT_SCHEDULED
4. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
5. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
8. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
9. lastIndexOf : negated conditional → NOT_SCHEDULED
10. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
11. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
12. lastIndexOf : negated conditional → NOT_SCHEDULED
13. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
14. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
15. lastIndexOf : negated conditional → NOT_SCHEDULED
16. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
17. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
18. lastIndexOf : negated conditional → NOT_SCHEDULED
19. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
20. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
21. lastIndexOf : negated conditional → NOT_SCHEDULED
        for (int i = startIndex; i >= 0; i--) {
3975 7 1. lastIndexOf : negated conditional → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : negated conditional → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : negated conditional → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : negated conditional → NOT_SCHEDULED
            if (valueToFind == array[i]) {
3976 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
                return i;
3977
            }
3978
        }
3979 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return INDEX_NOT_FOUND;
3980
    }
3981
3982
    /**
3983
     * <p>Finds the last index of the given value in the array starting at the given index.
3984
     * This method will return the index of the last value which falls between the region
3985
     * defined by valueToFind - tolerance and valueToFind + tolerance.
3986
     *
3987
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
3988
     *
3989
     * <p>A negative startIndex will return {@link #INDEX_NOT_FOUND} ({@code -1}). A startIndex larger than the
3990
     * array length will search from the end of the array.
3991
     *
3992
     * @param array  the array to traverse for looking for the object, may be {@code null}
3993
     * @param valueToFind  the value to find
3994
     * @param startIndex  the start index to travers backwards from
3995
     * @param tolerance  search for value within plus/minus this amount
3996
     * @return the last index of the value within the array,
3997
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
3998
     */
3999
    public static int lastIndexOf(final double[] array, final double valueToFind, int startIndex, final double tolerance) {
4000 7 1. lastIndexOf : negated conditional → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : negated conditional → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : negated conditional → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : negated conditional → NOT_SCHEDULED
        if (ArrayUtils.isEmpty(array)) {
4001 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return INDEX_NOT_FOUND;
4002
        }
4003 14 1. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
8. lastIndexOf : negated conditional → NOT_SCHEDULED
9. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
10. lastIndexOf : negated conditional → NOT_SCHEDULED
11. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
12. lastIndexOf : negated conditional → NOT_SCHEDULED
13. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
14. lastIndexOf : negated conditional → NOT_SCHEDULED
        if (startIndex < 0) {
4004 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return INDEX_NOT_FOUND;
4005 14 1. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
8. lastIndexOf : negated conditional → NOT_SCHEDULED
9. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
10. lastIndexOf : negated conditional → NOT_SCHEDULED
11. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
12. lastIndexOf : negated conditional → NOT_SCHEDULED
13. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
14. lastIndexOf : negated conditional → NOT_SCHEDULED
        } else if (startIndex >= array.length) {
4006 7 1. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
2. lastIndexOf : Replaced integer subtraction with addition → KILLED
3. lastIndexOf : Replaced integer subtraction with addition → KILLED
4. lastIndexOf : Replaced integer subtraction with addition → KILLED
5. lastIndexOf : Replaced integer subtraction with addition → KILLED
6. lastIndexOf : Replaced integer subtraction with addition → KILLED
7. lastIndexOf : Replaced integer subtraction with addition → KILLED
            startIndex = array.length - 1;
4007
        }
4008 7 1. lastIndexOf : Replaced double subtraction with addition → NOT_SCHEDULED
2. lastIndexOf : Replaced double subtraction with addition → NOT_SCHEDULED
3. lastIndexOf : Replaced double subtraction with addition → NOT_SCHEDULED
4. lastIndexOf : Replaced double subtraction with addition → NOT_SCHEDULED
5. lastIndexOf : Replaced double subtraction with addition → NOT_SCHEDULED
6. lastIndexOf : Replaced double subtraction with addition → NOT_SCHEDULED
7. lastIndexOf : Replaced double subtraction with addition → NOT_SCHEDULED
        final double min = valueToFind - tolerance;
4009 7 1. lastIndexOf : Replaced double addition with subtraction → NOT_SCHEDULED
2. lastIndexOf : Replaced double addition with subtraction → NOT_SCHEDULED
3. lastIndexOf : Replaced double addition with subtraction → NOT_SCHEDULED
4. lastIndexOf : Replaced double addition with subtraction → NOT_SCHEDULED
5. lastIndexOf : Replaced double addition with subtraction → NOT_SCHEDULED
6. lastIndexOf : Replaced double addition with subtraction → NOT_SCHEDULED
7. lastIndexOf : Replaced double addition with subtraction → NOT_SCHEDULED
        final double max = valueToFind + tolerance;
4010 21 1. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
2. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
3. lastIndexOf : negated conditional → NOT_SCHEDULED
4. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
5. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
8. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
9. lastIndexOf : negated conditional → NOT_SCHEDULED
10. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
11. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
12. lastIndexOf : negated conditional → NOT_SCHEDULED
13. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
14. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
15. lastIndexOf : negated conditional → NOT_SCHEDULED
16. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
17. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
18. lastIndexOf : negated conditional → NOT_SCHEDULED
19. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
20. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
21. lastIndexOf : negated conditional → NOT_SCHEDULED
        for (int i = startIndex; i >= 0; i--) {
4011 28 1. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
2. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
3. lastIndexOf : negated conditional → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
6. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
7. lastIndexOf : negated conditional → NOT_SCHEDULED
8. lastIndexOf : negated conditional → NOT_SCHEDULED
9. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
10. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
11. lastIndexOf : negated conditional → NOT_SCHEDULED
12. lastIndexOf : negated conditional → NOT_SCHEDULED
13. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
14. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
15. lastIndexOf : negated conditional → NOT_SCHEDULED
16. lastIndexOf : negated conditional → NOT_SCHEDULED
17. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
18. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
19. lastIndexOf : negated conditional → NOT_SCHEDULED
20. lastIndexOf : negated conditional → NOT_SCHEDULED
21. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
22. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
23. lastIndexOf : negated conditional → NOT_SCHEDULED
24. lastIndexOf : negated conditional → NOT_SCHEDULED
25. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
26. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
27. lastIndexOf : negated conditional → NOT_SCHEDULED
28. lastIndexOf : negated conditional → NOT_SCHEDULED
            if (array[i] >= min && array[i] <= max) {
4012 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
                return i;
4013
            }
4014
        }
4015 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return INDEX_NOT_FOUND;
4016
    }
4017
4018
    /**
4019
     * <p>Checks if the value is in the given array.
4020
     *
4021
     * <p>The method returns {@code false} if a {@code null} array is passed in.
4022
     *
4023
     * @param array  the array to search through
4024
     * @param valueToFind  the value to find
4025
     * @return {@code true} if the array contains the object
4026
     */
4027
    public static boolean contains(final double[] array, final double valueToFind) {
4028 14 1. contains : negated conditional → NOT_SCHEDULED
2. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. contains : negated conditional → NOT_SCHEDULED
4. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. contains : negated conditional → NOT_SCHEDULED
6. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. contains : negated conditional → NOT_SCHEDULED
8. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. contains : negated conditional → NOT_SCHEDULED
10. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. contains : negated conditional → NOT_SCHEDULED
12. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. contains : negated conditional → NOT_SCHEDULED
14. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return indexOf(array, valueToFind) != INDEX_NOT_FOUND;
4029
    }
4030
4031
    /**
4032
     * <p>Checks if a value falling within the given tolerance is in the
4033
     * given array.  If the array contains a value within the inclusive range
4034
     * defined by (value - tolerance) to (value + tolerance).
4035
     *
4036
     * <p>The method returns {@code false} if a {@code null} array
4037
     * is passed in.
4038
     *
4039
     * @param array  the array to search
4040
     * @param valueToFind  the value to find
4041
     * @param tolerance  the array contains the tolerance of the search
4042
     * @return true if value falling within tolerance is in array
4043
     */
4044
    public static boolean contains(final double[] array, final double valueToFind, final double tolerance) {
4045 14 1. contains : negated conditional → NOT_SCHEDULED
2. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. contains : negated conditional → NOT_SCHEDULED
4. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. contains : negated conditional → NOT_SCHEDULED
6. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. contains : negated conditional → NOT_SCHEDULED
8. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. contains : negated conditional → NOT_SCHEDULED
10. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. contains : negated conditional → NOT_SCHEDULED
12. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. contains : negated conditional → NOT_SCHEDULED
14. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return indexOf(array, valueToFind, 0, tolerance) != INDEX_NOT_FOUND;
4046
    }
4047
4048
    // float IndexOf
4049
    //-----------------------------------------------------------------------
4050
    /**
4051
     * <p>Finds the index of the given value in the array.
4052
     *
4053
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
4054
     *
4055
     * @param array  the array to search through for the object, may be {@code null}
4056
     * @param valueToFind  the value to find
4057
     * @return the index of the value within the array,
4058
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
4059
     */
4060
    public static int indexOf(final float[] array, final float valueToFind) {
4061 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return indexOf(array, valueToFind, 0);
4062
    }
4063
4064
    /**
4065
     * <p>Finds the index of the given value in the array starting at the given index.
4066
     *
4067
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
4068
     *
4069
     * <p>A negative startIndex is treated as zero. A startIndex larger than the array
4070
     * length will return {@link #INDEX_NOT_FOUND} ({@code -1}).
4071
     *
4072
     * @param array  the array to search through for the object, may be {@code null}
4073
     * @param valueToFind  the value to find
4074
     * @param startIndex  the index to start searching at
4075
     * @return the index of the value within the array,
4076
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
4077
     */
4078
    public static int indexOf(final float[] array, final float valueToFind, int startIndex) {
4079 7 1. indexOf : negated conditional → NOT_SCHEDULED
2. indexOf : negated conditional → NOT_SCHEDULED
3. indexOf : negated conditional → NOT_SCHEDULED
4. indexOf : negated conditional → NOT_SCHEDULED
5. indexOf : negated conditional → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : negated conditional → NOT_SCHEDULED
        if (ArrayUtils.isEmpty(array)) {
4080 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return INDEX_NOT_FOUND;
4081
        }
4082 14 1. indexOf : changed conditional boundary → NOT_SCHEDULED
2. indexOf : negated conditional → NOT_SCHEDULED
3. indexOf : changed conditional boundary → NOT_SCHEDULED
4. indexOf : negated conditional → NOT_SCHEDULED
5. indexOf : changed conditional boundary → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : changed conditional boundary → NOT_SCHEDULED
8. indexOf : negated conditional → NOT_SCHEDULED
9. indexOf : changed conditional boundary → NOT_SCHEDULED
10. indexOf : negated conditional → NOT_SCHEDULED
11. indexOf : changed conditional boundary → NOT_SCHEDULED
12. indexOf : negated conditional → NOT_SCHEDULED
13. indexOf : changed conditional boundary → NOT_SCHEDULED
14. indexOf : negated conditional → NOT_SCHEDULED
        if (startIndex < 0) {
4083
            startIndex = 0;
4084
        }
4085 21 1. indexOf : changed conditional boundary → NOT_SCHEDULED
2. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
3. indexOf : negated conditional → NOT_SCHEDULED
4. indexOf : changed conditional boundary → NOT_SCHEDULED
5. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : changed conditional boundary → NOT_SCHEDULED
8. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
9. indexOf : negated conditional → NOT_SCHEDULED
10. indexOf : changed conditional boundary → NOT_SCHEDULED
11. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
12. indexOf : negated conditional → NOT_SCHEDULED
13. indexOf : changed conditional boundary → NOT_SCHEDULED
14. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
15. indexOf : negated conditional → NOT_SCHEDULED
16. indexOf : changed conditional boundary → NOT_SCHEDULED
17. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
18. indexOf : negated conditional → NOT_SCHEDULED
19. indexOf : changed conditional boundary → NOT_SCHEDULED
20. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
21. indexOf : negated conditional → NOT_SCHEDULED
        for (int i = startIndex; i < array.length; i++) {
4086 7 1. indexOf : negated conditional → NOT_SCHEDULED
2. indexOf : negated conditional → NOT_SCHEDULED
3. indexOf : negated conditional → NOT_SCHEDULED
4. indexOf : negated conditional → NOT_SCHEDULED
5. indexOf : negated conditional → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : negated conditional → NOT_SCHEDULED
            if (valueToFind == array[i]) {
4087 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
                return i;
4088
            }
4089
        }
4090 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return INDEX_NOT_FOUND;
4091
    }
4092
4093
    /**
4094
     * <p>Finds the last index of the given value within the array.
4095
     *
4096
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
4097
     *
4098
     * @param array  the array to travers backwords looking for the object, may be {@code null}
4099
     * @param valueToFind  the object to find
4100
     * @return the last index of the value within the array,
4101
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
4102
     */
4103
    public static int lastIndexOf(final float[] array, final float valueToFind) {
4104 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return lastIndexOf(array, valueToFind, Integer.MAX_VALUE);
4105
    }
4106
4107
    /**
4108
     * <p>Finds the last index of the given value in the array starting at the given index.
4109
     *
4110
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
4111
     *
4112
     * <p>A negative startIndex will return {@link #INDEX_NOT_FOUND} ({@code -1}). A startIndex larger than the
4113
     * array length will search from the end of the array.
4114
     *
4115
     * @param array  the array to traverse for looking for the object, may be {@code null}
4116
     * @param valueToFind  the value to find
4117
     * @param startIndex  the start index to travers backwards from
4118
     * @return the last index of the value within the array,
4119
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
4120
     */
4121
    public static int lastIndexOf(final float[] array, final float valueToFind, int startIndex) {
4122 7 1. lastIndexOf : negated conditional → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : negated conditional → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : negated conditional → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : negated conditional → NOT_SCHEDULED
        if (ArrayUtils.isEmpty(array)) {
4123 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return INDEX_NOT_FOUND;
4124
        }
4125 14 1. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
8. lastIndexOf : negated conditional → NOT_SCHEDULED
9. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
10. lastIndexOf : negated conditional → NOT_SCHEDULED
11. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
12. lastIndexOf : negated conditional → NOT_SCHEDULED
13. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
14. lastIndexOf : negated conditional → NOT_SCHEDULED
        if (startIndex < 0) {
4126 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return INDEX_NOT_FOUND;
4127 14 1. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
8. lastIndexOf : negated conditional → NOT_SCHEDULED
9. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
10. lastIndexOf : negated conditional → NOT_SCHEDULED
11. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
12. lastIndexOf : negated conditional → NOT_SCHEDULED
13. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
14. lastIndexOf : negated conditional → NOT_SCHEDULED
        } else if (startIndex >= array.length) {
4128 7 1. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
2. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
3. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
4. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
5. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
6. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
7. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
            startIndex = array.length - 1;
4129
        }
4130 21 1. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
2. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
3. lastIndexOf : negated conditional → NOT_SCHEDULED
4. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
5. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
8. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
9. lastIndexOf : negated conditional → NOT_SCHEDULED
10. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
11. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
12. lastIndexOf : negated conditional → NOT_SCHEDULED
13. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
14. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
15. lastIndexOf : negated conditional → NOT_SCHEDULED
16. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
17. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
18. lastIndexOf : negated conditional → NOT_SCHEDULED
19. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
20. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
21. lastIndexOf : negated conditional → NOT_SCHEDULED
        for (int i = startIndex; i >= 0; i--) {
4131 7 1. lastIndexOf : negated conditional → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : negated conditional → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : negated conditional → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : negated conditional → NOT_SCHEDULED
            if (valueToFind == array[i]) {
4132 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
                return i;
4133
            }
4134
        }
4135 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return INDEX_NOT_FOUND;
4136
    }
4137
4138
    /**
4139
     * <p>Checks if the value is in the given array.
4140
     *
4141
     * <p>The method returns {@code false} if a {@code null} array is passed in.
4142
     *
4143
     * @param array  the array to search through
4144
     * @param valueToFind  the value to find
4145
     * @return {@code true} if the array contains the object
4146
     */
4147
    public static boolean contains(final float[] array, final float valueToFind) {
4148 14 1. contains : negated conditional → NOT_SCHEDULED
2. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. contains : negated conditional → NOT_SCHEDULED
4. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. contains : negated conditional → NOT_SCHEDULED
6. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. contains : negated conditional → NOT_SCHEDULED
8. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. contains : negated conditional → NOT_SCHEDULED
10. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. contains : negated conditional → NOT_SCHEDULED
12. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. contains : negated conditional → NOT_SCHEDULED
14. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return indexOf(array, valueToFind) != INDEX_NOT_FOUND;
4149
    }
4150
4151
    // boolean IndexOf
4152
    //-----------------------------------------------------------------------
4153
    /**
4154
     * <p>Finds the index of the given value in the array.
4155
     *
4156
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
4157
     *
4158
     * @param array  the array to search through for the object, may be {@code null}
4159
     * @param valueToFind  the value to find
4160
     * @return the index of the value within the array,
4161
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
4162
     */
4163
    public static int indexOf(final boolean[] array, final boolean valueToFind) {
4164 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return indexOf(array, valueToFind, 0);
4165
    }
4166
4167
    /**
4168
     * <p>Finds the index of the given value in the array starting at the given index.
4169
     *
4170
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
4171
     *
4172
     * <p>A negative startIndex is treated as zero. A startIndex larger than the array
4173
     * length will return {@link #INDEX_NOT_FOUND} ({@code -1}).
4174
     *
4175
     * @param array  the array to search through for the object, may be {@code null}
4176
     * @param valueToFind  the value to find
4177
     * @param startIndex  the index to start searching at
4178
     * @return the index of the value within the array,
4179
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null}
4180
     *  array input
4181
     */
4182
    public static int indexOf(final boolean[] array, final boolean valueToFind, int startIndex) {
4183 7 1. indexOf : negated conditional → NOT_SCHEDULED
2. indexOf : negated conditional → NOT_SCHEDULED
3. indexOf : negated conditional → NOT_SCHEDULED
4. indexOf : negated conditional → NOT_SCHEDULED
5. indexOf : negated conditional → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : negated conditional → NOT_SCHEDULED
        if (ArrayUtils.isEmpty(array)) {
4184 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return INDEX_NOT_FOUND;
4185
        }
4186 14 1. indexOf : changed conditional boundary → NOT_SCHEDULED
2. indexOf : negated conditional → NOT_SCHEDULED
3. indexOf : changed conditional boundary → NOT_SCHEDULED
4. indexOf : negated conditional → NOT_SCHEDULED
5. indexOf : changed conditional boundary → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : changed conditional boundary → NOT_SCHEDULED
8. indexOf : negated conditional → NOT_SCHEDULED
9. indexOf : changed conditional boundary → NOT_SCHEDULED
10. indexOf : negated conditional → NOT_SCHEDULED
11. indexOf : changed conditional boundary → NOT_SCHEDULED
12. indexOf : negated conditional → NOT_SCHEDULED
13. indexOf : changed conditional boundary → NOT_SCHEDULED
14. indexOf : negated conditional → NOT_SCHEDULED
        if (startIndex < 0) {
4187
            startIndex = 0;
4188
        }
4189 21 1. indexOf : changed conditional boundary → NOT_SCHEDULED
2. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
3. indexOf : negated conditional → NOT_SCHEDULED
4. indexOf : changed conditional boundary → NOT_SCHEDULED
5. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : changed conditional boundary → NOT_SCHEDULED
8. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
9. indexOf : negated conditional → NOT_SCHEDULED
10. indexOf : changed conditional boundary → NOT_SCHEDULED
11. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
12. indexOf : negated conditional → NOT_SCHEDULED
13. indexOf : changed conditional boundary → NOT_SCHEDULED
14. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
15. indexOf : negated conditional → NOT_SCHEDULED
16. indexOf : changed conditional boundary → NOT_SCHEDULED
17. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
18. indexOf : negated conditional → NOT_SCHEDULED
19. indexOf : changed conditional boundary → NOT_SCHEDULED
20. indexOf : Changed increment from 1 to -1 → NOT_SCHEDULED
21. indexOf : negated conditional → NOT_SCHEDULED
        for (int i = startIndex; i < array.length; i++) {
4190 7 1. indexOf : negated conditional → NOT_SCHEDULED
2. indexOf : negated conditional → NOT_SCHEDULED
3. indexOf : negated conditional → NOT_SCHEDULED
4. indexOf : negated conditional → NOT_SCHEDULED
5. indexOf : negated conditional → NOT_SCHEDULED
6. indexOf : negated conditional → NOT_SCHEDULED
7. indexOf : negated conditional → NOT_SCHEDULED
            if (valueToFind == array[i]) {
4191 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
                return i;
4192
            }
4193
        }
4194 7 1. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. indexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return INDEX_NOT_FOUND;
4195
    }
4196
4197
    /**
4198
     * <p>Finds the last index of the given value within the array.
4199
     *
4200
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) if
4201
     * {@code null} array input.
4202
     *
4203
     * @param array  the array to travers backwords looking for the object, may be {@code null}
4204
     * @param valueToFind  the object to find
4205
     * @return the last index of the value within the array,
4206
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
4207
     */
4208
    public static int lastIndexOf(final boolean[] array, final boolean valueToFind) {
4209 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return lastIndexOf(array, valueToFind, Integer.MAX_VALUE);
4210
    }
4211
4212
    /**
4213
     * <p>Finds the last index of the given value in the array starting at the given index.
4214
     *
4215
     * <p>This method returns {@link #INDEX_NOT_FOUND} ({@code -1}) for a {@code null} input array.
4216
     *
4217
     * <p>A negative startIndex will return {@link #INDEX_NOT_FOUND} ({@code -1}). A startIndex larger than
4218
     * the array length will search from the end of the array.
4219
     *
4220
     * @param array  the array to traverse for looking for the object, may be {@code null}
4221
     * @param valueToFind  the value to find
4222
     * @param startIndex  the start index to travers backwards from
4223
     * @return the last index of the value within the array,
4224
     *  {@link #INDEX_NOT_FOUND} ({@code -1}) if not found or {@code null} array input
4225
     */
4226
    public static int lastIndexOf(final boolean[] array, final boolean valueToFind, int startIndex) {
4227 7 1. lastIndexOf : negated conditional → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : negated conditional → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : negated conditional → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : negated conditional → NOT_SCHEDULED
        if (ArrayUtils.isEmpty(array)) {
4228 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return INDEX_NOT_FOUND;
4229
        }
4230 14 1. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
8. lastIndexOf : negated conditional → NOT_SCHEDULED
9. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
10. lastIndexOf : negated conditional → NOT_SCHEDULED
11. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
12. lastIndexOf : negated conditional → NOT_SCHEDULED
13. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
14. lastIndexOf : negated conditional → NOT_SCHEDULED
        if (startIndex < 0) {
4231 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return INDEX_NOT_FOUND;
4232 14 1. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
8. lastIndexOf : negated conditional → NOT_SCHEDULED
9. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
10. lastIndexOf : negated conditional → NOT_SCHEDULED
11. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
12. lastIndexOf : negated conditional → NOT_SCHEDULED
13. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
14. lastIndexOf : negated conditional → NOT_SCHEDULED
        } else if (startIndex >= array.length) {
4233 7 1. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
2. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
3. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
4. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
5. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
6. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
7. lastIndexOf : Replaced integer subtraction with addition → NOT_SCHEDULED
            startIndex = array.length - 1;
4234
        }
4235 21 1. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
2. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
3. lastIndexOf : negated conditional → NOT_SCHEDULED
4. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
5. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
8. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
9. lastIndexOf : negated conditional → NOT_SCHEDULED
10. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
11. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
12. lastIndexOf : negated conditional → NOT_SCHEDULED
13. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
14. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
15. lastIndexOf : negated conditional → NOT_SCHEDULED
16. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
17. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
18. lastIndexOf : negated conditional → NOT_SCHEDULED
19. lastIndexOf : changed conditional boundary → NOT_SCHEDULED
20. lastIndexOf : Changed increment from -1 to 1 → NOT_SCHEDULED
21. lastIndexOf : negated conditional → NOT_SCHEDULED
        for (int i = startIndex; i >= 0; i--) {
4236 7 1. lastIndexOf : negated conditional → NOT_SCHEDULED
2. lastIndexOf : negated conditional → NOT_SCHEDULED
3. lastIndexOf : negated conditional → NOT_SCHEDULED
4. lastIndexOf : negated conditional → NOT_SCHEDULED
5. lastIndexOf : negated conditional → NOT_SCHEDULED
6. lastIndexOf : negated conditional → NOT_SCHEDULED
7. lastIndexOf : negated conditional → NOT_SCHEDULED
            if (valueToFind == array[i]) {
4237 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
                return i;
4238
            }
4239
        }
4240 7 1. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. lastIndexOf : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return INDEX_NOT_FOUND;
4241
    }
4242
4243
    /**
4244
     * <p>Checks if the value is in the given array.
4245
     *
4246
     * <p>The method returns {@code false} if a {@code null} array is passed in.
4247
     *
4248
     * @param array  the array to search through
4249
     * @param valueToFind  the value to find
4250
     * @return {@code true} if the array contains the object
4251
     */
4252
    public static boolean contains(final boolean[] array, final boolean valueToFind) {
4253 14 1. contains : negated conditional → NOT_SCHEDULED
2. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. contains : negated conditional → NOT_SCHEDULED
4. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. contains : negated conditional → NOT_SCHEDULED
6. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. contains : negated conditional → NOT_SCHEDULED
8. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. contains : negated conditional → NOT_SCHEDULED
10. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. contains : negated conditional → NOT_SCHEDULED
12. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. contains : negated conditional → NOT_SCHEDULED
14. contains : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return indexOf(array, valueToFind) != INDEX_NOT_FOUND;
4254
    }
4255
4256
    // Primitive/Object array converters
4257
    // ----------------------------------------------------------------------
4258
4259
    // Character array converters
4260
    // ----------------------------------------------------------------------
4261
    /**
4262
     * <p>Converts an array of object Characters to primitives.
4263
     *
4264
     * <p>This method returns {@code null} for a {@code null} input array.
4265
     *
4266
     * @param array  a {@code Character} array, may be {@code null}
4267
     * @return a {@code char} array, {@code null} if null array input
4268
     * @throws NullPointerException if array content is {@code null}
4269
     */
4270
    public static char[] toPrimitive(final Character[] array) {
4271 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
        if (array == null) {
4272 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
4273 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
        } else if (array.length == 0) {
4274 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_CHAR_ARRAY;
4275
        }
4276
        final char[] result = new char[array.length];
4277 21 1. toPrimitive : changed conditional boundary → NOT_SCHEDULED
2. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : changed conditional boundary → NOT_SCHEDULED
5. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : changed conditional boundary → NOT_SCHEDULED
8. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
9. toPrimitive : negated conditional → NOT_SCHEDULED
10. toPrimitive : changed conditional boundary → NOT_SCHEDULED
11. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
12. toPrimitive : negated conditional → NOT_SCHEDULED
13. toPrimitive : changed conditional boundary → NOT_SCHEDULED
14. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
15. toPrimitive : negated conditional → NOT_SCHEDULED
16. toPrimitive : changed conditional boundary → NOT_SCHEDULED
17. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
18. toPrimitive : negated conditional → NOT_SCHEDULED
19. toPrimitive : changed conditional boundary → NOT_SCHEDULED
20. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
21. toPrimitive : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < array.length; i++) {
4278
            result[i] = array[i].charValue();
4279
        }
4280 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return result;
4281
    }
4282
4283
    /**
4284
     * <p>Converts an array of object Character to primitives handling {@code null}.
4285
     *
4286
     * <p>This method returns {@code null} for a {@code null} input array.
4287
     *
4288
     * @param array  a {@code Character} array, may be {@code null}
4289
     * @param valueForNull  the value to insert if {@code null} found
4290
     * @return a {@code char} array, {@code null} if null array input
4291
     */
4292
    public static char[] toPrimitive(final Character[] array, final char valueForNull) {
4293 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
        if (array == null) {
4294 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
4295 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
        } else if (array.length == 0) {
4296 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_CHAR_ARRAY;
4297
        }
4298
        final char[] result = new char[array.length];
4299 21 1. toPrimitive : changed conditional boundary → NOT_SCHEDULED
2. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : changed conditional boundary → NOT_SCHEDULED
5. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : changed conditional boundary → NOT_SCHEDULED
8. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
9. toPrimitive : changed conditional boundary → NOT_SCHEDULED
10. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
11. toPrimitive : changed conditional boundary → NOT_SCHEDULED
12. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
13. toPrimitive : changed conditional boundary → NOT_SCHEDULED
14. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
15. toPrimitive : changed conditional boundary → NOT_SCHEDULED
16. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
17. toPrimitive : negated conditional → KILLED
18. toPrimitive : negated conditional → KILLED
19. toPrimitive : negated conditional → KILLED
20. toPrimitive : negated conditional → KILLED
21. toPrimitive : negated conditional → KILLED
        for (int i = 0; i < array.length; i++) {
4300
            final Character b = array[i];
4301 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
            result[i] = (b == null ? valueForNull : b.charValue());
4302
        }
4303 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return result;
4304
    }
4305
4306
    /**
4307
     * <p>Converts an array of primitive chars to objects.
4308
     *
4309
     * <p>This method returns {@code null} for a {@code null} input array.
4310
     *
4311
     * @param array a {@code char} array
4312
     * @return a {@code Character} array, {@code null} if null array input
4313
     */
4314
    public static Character[] toObject(final char[] array) {
4315 7 1. toObject : negated conditional → NOT_SCHEDULED
2. toObject : negated conditional → NOT_SCHEDULED
3. toObject : negated conditional → NOT_SCHEDULED
4. toObject : negated conditional → NOT_SCHEDULED
5. toObject : negated conditional → NOT_SCHEDULED
6. toObject : negated conditional → NOT_SCHEDULED
7. toObject : negated conditional → NOT_SCHEDULED
        if (array == null) {
4316 7 1. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
4317 7 1. toObject : negated conditional → NOT_SCHEDULED
2. toObject : negated conditional → NOT_SCHEDULED
3. toObject : negated conditional → NOT_SCHEDULED
4. toObject : negated conditional → NOT_SCHEDULED
5. toObject : negated conditional → NOT_SCHEDULED
6. toObject : negated conditional → NOT_SCHEDULED
7. toObject : negated conditional → NOT_SCHEDULED
        } else if (array.length == 0) {
4318 7 1. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_CHARACTER_OBJECT_ARRAY;
4319
        }
4320
        final Character[] result = new Character[array.length];
4321 21 1. toObject : changed conditional boundary → NOT_SCHEDULED
2. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
3. toObject : negated conditional → NOT_SCHEDULED
4. toObject : changed conditional boundary → NOT_SCHEDULED
5. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
6. toObject : negated conditional → NOT_SCHEDULED
7. toObject : changed conditional boundary → NOT_SCHEDULED
8. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
9. toObject : negated conditional → NOT_SCHEDULED
10. toObject : changed conditional boundary → NOT_SCHEDULED
11. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
12. toObject : negated conditional → NOT_SCHEDULED
13. toObject : changed conditional boundary → NOT_SCHEDULED
14. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
15. toObject : negated conditional → NOT_SCHEDULED
16. toObject : changed conditional boundary → NOT_SCHEDULED
17. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
18. toObject : negated conditional → NOT_SCHEDULED
19. toObject : changed conditional boundary → NOT_SCHEDULED
20. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
21. toObject : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < array.length; i++) {
4322
            result[i] = Character.valueOf(array[i]);
4323
        }
4324 7 1. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return result;
4325
     }
4326
4327
    // Long array converters
4328
    // ----------------------------------------------------------------------
4329
    /**
4330
     * <p>Converts an array of object Longs to primitives.
4331
     *
4332
     * <p>This method returns {@code null} for a {@code null} input array.
4333
     *
4334
     * @param array  a {@code Long} array, may be {@code null}
4335
     * @return a {@code long} array, {@code null} if null array input
4336
     * @throws NullPointerException if array content is {@code null}
4337
     */
4338
    public static long[] toPrimitive(final Long[] array) {
4339 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
        if (array == null) {
4340 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
4341 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
        } else if (array.length == 0) {
4342 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_LONG_ARRAY;
4343
        }
4344
        final long[] result = new long[array.length];
4345 21 1. toPrimitive : changed conditional boundary → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : changed conditional boundary → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : changed conditional boundary → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : changed conditional boundary → NOT_SCHEDULED
8. toPrimitive : negated conditional → NOT_SCHEDULED
9. toPrimitive : changed conditional boundary → NOT_SCHEDULED
10. toPrimitive : negated conditional → NOT_SCHEDULED
11. toPrimitive : changed conditional boundary → NOT_SCHEDULED
12. toPrimitive : negated conditional → NOT_SCHEDULED
13. toPrimitive : changed conditional boundary → NOT_SCHEDULED
14. toPrimitive : negated conditional → NOT_SCHEDULED
15. toPrimitive : Changed increment from 1 to -1 → KILLED
16. toPrimitive : Changed increment from 1 to -1 → KILLED
17. toPrimitive : Changed increment from 1 to -1 → KILLED
18. toPrimitive : Changed increment from 1 to -1 → KILLED
19. toPrimitive : Changed increment from 1 to -1 → KILLED
20. toPrimitive : Changed increment from 1 to -1 → KILLED
21. toPrimitive : Changed increment from 1 to -1 → KILLED
        for (int i = 0; i < array.length; i++) {
4346
            result[i] = array[i].longValue();
4347
        }
4348 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return result;
4349
    }
4350
4351
    /**
4352
     * <p>Converts an array of object Long to primitives handling {@code null}.
4353
     *
4354
     * <p>This method returns {@code null} for a {@code null} input array.
4355
     *
4356
     * @param array  a {@code Long} array, may be {@code null}
4357
     * @param valueForNull  the value to insert if {@code null} found
4358
     * @return a {@code long} array, {@code null} if null array input
4359
     */
4360
    public static long[] toPrimitive(final Long[] array, final long valueForNull) {
4361 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
        if (array == null) {
4362 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
4363 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
        } else if (array.length == 0) {
4364 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_LONG_ARRAY;
4365
        }
4366
        final long[] result = new long[array.length];
4367 21 1. toPrimitive : changed conditional boundary → NOT_SCHEDULED
2. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : changed conditional boundary → NOT_SCHEDULED
5. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : changed conditional boundary → NOT_SCHEDULED
8. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
9. toPrimitive : negated conditional → NOT_SCHEDULED
10. toPrimitive : changed conditional boundary → NOT_SCHEDULED
11. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
12. toPrimitive : negated conditional → NOT_SCHEDULED
13. toPrimitive : changed conditional boundary → NOT_SCHEDULED
14. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
15. toPrimitive : negated conditional → NOT_SCHEDULED
16. toPrimitive : changed conditional boundary → NOT_SCHEDULED
17. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
18. toPrimitive : negated conditional → NOT_SCHEDULED
19. toPrimitive : changed conditional boundary → NOT_SCHEDULED
20. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
21. toPrimitive : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < array.length; i++) {
4368
            final Long b = array[i];
4369 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
            result[i] = (b == null ? valueForNull : b.longValue());
4370
        }
4371 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return result;
4372
    }
4373
4374
    /**
4375
     * <p>Converts an array of primitive longs to objects.
4376
     *
4377
     * <p>This method returns {@code null} for a {@code null} input array.
4378
     *
4379
     * @param array  a {@code long} array
4380
     * @return a {@code Long} array, {@code null} if null array input
4381
     */
4382
    public static Long[] toObject(final long[] array) {
4383 7 1. toObject : negated conditional → NOT_SCHEDULED
2. toObject : negated conditional → NOT_SCHEDULED
3. toObject : negated conditional → NOT_SCHEDULED
4. toObject : negated conditional → NOT_SCHEDULED
5. toObject : negated conditional → NOT_SCHEDULED
6. toObject : negated conditional → NOT_SCHEDULED
7. toObject : negated conditional → NOT_SCHEDULED
        if (array == null) {
4384 7 1. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
4385 7 1. toObject : negated conditional → NOT_SCHEDULED
2. toObject : negated conditional → NOT_SCHEDULED
3. toObject : negated conditional → NOT_SCHEDULED
4. toObject : negated conditional → NOT_SCHEDULED
5. toObject : negated conditional → NOT_SCHEDULED
6. toObject : negated conditional → NOT_SCHEDULED
7. toObject : negated conditional → NOT_SCHEDULED
        } else if (array.length == 0) {
4386 7 1. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_LONG_OBJECT_ARRAY;
4387
        }
4388
        final Long[] result = new Long[array.length];
4389 21 1. toObject : changed conditional boundary → NOT_SCHEDULED
2. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
3. toObject : negated conditional → NOT_SCHEDULED
4. toObject : changed conditional boundary → NOT_SCHEDULED
5. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
6. toObject : negated conditional → NOT_SCHEDULED
7. toObject : changed conditional boundary → NOT_SCHEDULED
8. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
9. toObject : negated conditional → NOT_SCHEDULED
10. toObject : changed conditional boundary → NOT_SCHEDULED
11. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
12. toObject : negated conditional → NOT_SCHEDULED
13. toObject : changed conditional boundary → NOT_SCHEDULED
14. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
15. toObject : negated conditional → NOT_SCHEDULED
16. toObject : changed conditional boundary → NOT_SCHEDULED
17. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
18. toObject : negated conditional → NOT_SCHEDULED
19. toObject : changed conditional boundary → NOT_SCHEDULED
20. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
21. toObject : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < array.length; i++) {
4390
            result[i] = Long.valueOf(array[i]);
4391
        }
4392 7 1. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return result;
4393
    }
4394
4395
    // Int array converters
4396
    // ----------------------------------------------------------------------
4397
    /**
4398
     * <p>Converts an array of object Integers to primitives.
4399
     *
4400
     * <p>This method returns {@code null} for a {@code null} input array.
4401
     *
4402
     * @param array  a {@code Integer} array, may be {@code null}
4403
     * @return an {@code int} array, {@code null} if null array input
4404
     * @throws NullPointerException if array content is {@code null}
4405
     */
4406
    public static int[] toPrimitive(final Integer[] array) {
4407 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
        if (array == null) {
4408 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
4409 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
        } else if (array.length == 0) {
4410 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_INT_ARRAY;
4411
        }
4412
        final int[] result = new int[array.length];
4413 21 1. toPrimitive : changed conditional boundary → NOT_SCHEDULED
2. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : changed conditional boundary → NOT_SCHEDULED
5. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : changed conditional boundary → NOT_SCHEDULED
8. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
9. toPrimitive : negated conditional → NOT_SCHEDULED
10. toPrimitive : changed conditional boundary → NOT_SCHEDULED
11. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
12. toPrimitive : negated conditional → NOT_SCHEDULED
13. toPrimitive : changed conditional boundary → NOT_SCHEDULED
14. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
15. toPrimitive : negated conditional → NOT_SCHEDULED
16. toPrimitive : changed conditional boundary → NOT_SCHEDULED
17. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
18. toPrimitive : negated conditional → NOT_SCHEDULED
19. toPrimitive : changed conditional boundary → NOT_SCHEDULED
20. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
21. toPrimitive : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < array.length; i++) {
4414
            result[i] = array[i].intValue();
4415
        }
4416 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return result;
4417
    }
4418
4419
    /**
4420
     * <p>Converts an array of object Integer to primitives handling {@code null}.
4421
     *
4422
     * <p>This method returns {@code null} for a {@code null} input array.
4423
     *
4424
     * @param array  a {@code Integer} array, may be {@code null}
4425
     * @param valueForNull  the value to insert if {@code null} found
4426
     * @return an {@code int} array, {@code null} if null array input
4427
     */
4428
    public static int[] toPrimitive(final Integer[] array, final int valueForNull) {
4429 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
        if (array == null) {
4430 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
4431 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
        } else if (array.length == 0) {
4432 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_INT_ARRAY;
4433
        }
4434
        final int[] result = new int[array.length];
4435 21 1. toPrimitive : changed conditional boundary → NOT_SCHEDULED
2. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : changed conditional boundary → NOT_SCHEDULED
5. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : changed conditional boundary → NOT_SCHEDULED
8. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
9. toPrimitive : negated conditional → NOT_SCHEDULED
10. toPrimitive : changed conditional boundary → NOT_SCHEDULED
11. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
12. toPrimitive : negated conditional → NOT_SCHEDULED
13. toPrimitive : changed conditional boundary → NOT_SCHEDULED
14. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
15. toPrimitive : negated conditional → NOT_SCHEDULED
16. toPrimitive : changed conditional boundary → NOT_SCHEDULED
17. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
18. toPrimitive : negated conditional → NOT_SCHEDULED
19. toPrimitive : changed conditional boundary → NOT_SCHEDULED
20. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
21. toPrimitive : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < array.length; i++) {
4436
            final Integer b = array[i];
4437 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
            result[i] = (b == null ? valueForNull : b.intValue());
4438
        }
4439 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return result;
4440
    }
4441
4442
    /**
4443
     * <p>Converts an array of primitive ints to objects.
4444
     *
4445
     * <p>This method returns {@code null} for a {@code null} input array.
4446
     *
4447
     * @param array  an {@code int} array
4448
     * @return an {@code Integer} array, {@code null} if null array input
4449
     */
4450
    public static Integer[] toObject(final int[] array) {
4451 7 1. toObject : negated conditional → NOT_SCHEDULED
2. toObject : negated conditional → NOT_SCHEDULED
3. toObject : negated conditional → NOT_SCHEDULED
4. toObject : negated conditional → NOT_SCHEDULED
5. toObject : negated conditional → NOT_SCHEDULED
6. toObject : negated conditional → NOT_SCHEDULED
7. toObject : negated conditional → NOT_SCHEDULED
        if (array == null) {
4452 7 1. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
4453 7 1. toObject : negated conditional → NOT_SCHEDULED
2. toObject : negated conditional → NOT_SCHEDULED
3. toObject : negated conditional → NOT_SCHEDULED
4. toObject : negated conditional → NOT_SCHEDULED
5. toObject : negated conditional → NOT_SCHEDULED
6. toObject : negated conditional → NOT_SCHEDULED
7. toObject : negated conditional → NOT_SCHEDULED
        } else if (array.length == 0) {
4454 7 1. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_INTEGER_OBJECT_ARRAY;
4455
        }
4456
        final Integer[] result = new Integer[array.length];
4457 21 1. toObject : changed conditional boundary → NOT_SCHEDULED
2. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
3. toObject : negated conditional → NOT_SCHEDULED
4. toObject : changed conditional boundary → NOT_SCHEDULED
5. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
6. toObject : negated conditional → NOT_SCHEDULED
7. toObject : changed conditional boundary → NOT_SCHEDULED
8. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
9. toObject : negated conditional → NOT_SCHEDULED
10. toObject : changed conditional boundary → NOT_SCHEDULED
11. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
12. toObject : negated conditional → NOT_SCHEDULED
13. toObject : changed conditional boundary → NOT_SCHEDULED
14. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
15. toObject : negated conditional → NOT_SCHEDULED
16. toObject : changed conditional boundary → NOT_SCHEDULED
17. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
18. toObject : negated conditional → NOT_SCHEDULED
19. toObject : changed conditional boundary → NOT_SCHEDULED
20. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
21. toObject : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < array.length; i++) {
4458
            result[i] = Integer.valueOf(array[i]);
4459
        }
4460 7 1. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return result;
4461
    }
4462
4463
    // Short array converters
4464
    // ----------------------------------------------------------------------
4465
    /**
4466
     * <p>Converts an array of object Shorts to primitives.
4467
     *
4468
     * <p>This method returns {@code null} for a {@code null} input array.
4469
     *
4470
     * @param array  a {@code Short} array, may be {@code null}
4471
     * @return a {@code byte} array, {@code null} if null array input
4472
     * @throws NullPointerException if array content is {@code null}
4473
     */
4474
    public static short[] toPrimitive(final Short[] array) {
4475 7 1. toPrimitive : negated conditional → KILLED
2. toPrimitive : negated conditional → KILLED
3. toPrimitive : negated conditional → KILLED
4. toPrimitive : negated conditional → KILLED
5. toPrimitive : negated conditional → KILLED
6. toPrimitive : negated conditional → KILLED
7. toPrimitive : negated conditional → KILLED
        if (array == null) {
4476 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
4477 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
        } else if (array.length == 0) {
4478 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_SHORT_ARRAY;
4479
        }
4480
        final short[] result = new short[array.length];
4481 21 1. toPrimitive : changed conditional boundary → NOT_SCHEDULED
2. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : changed conditional boundary → NOT_SCHEDULED
5. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : changed conditional boundary → NOT_SCHEDULED
8. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
9. toPrimitive : negated conditional → NOT_SCHEDULED
10. toPrimitive : changed conditional boundary → NOT_SCHEDULED
11. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
12. toPrimitive : negated conditional → NOT_SCHEDULED
13. toPrimitive : changed conditional boundary → NOT_SCHEDULED
14. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
15. toPrimitive : negated conditional → NOT_SCHEDULED
16. toPrimitive : changed conditional boundary → NOT_SCHEDULED
17. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
18. toPrimitive : negated conditional → NOT_SCHEDULED
19. toPrimitive : changed conditional boundary → NOT_SCHEDULED
20. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
21. toPrimitive : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < array.length; i++) {
4482
            result[i] = array[i].shortValue();
4483
        }
4484 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return result;
4485
    }
4486
4487
    /**
4488
     * <p>Converts an array of object Short to primitives handling {@code null}.
4489
     *
4490
     * <p>This method returns {@code null} for a {@code null} input array.
4491
     *
4492
     * @param array  a {@code Short} array, may be {@code null}
4493
     * @param valueForNull  the value to insert if {@code null} found
4494
     * @return a {@code byte} array, {@code null} if null array input
4495
     */
4496
    public static short[] toPrimitive(final Short[] array, final short valueForNull) {
4497 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
        if (array == null) {
4498 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
4499 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
        } else if (array.length == 0) {
4500 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_SHORT_ARRAY;
4501
        }
4502
        final short[] result = new short[array.length];
4503 21 1. toPrimitive : changed conditional boundary → NOT_SCHEDULED
2. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : changed conditional boundary → NOT_SCHEDULED
5. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : changed conditional boundary → NOT_SCHEDULED
8. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
9. toPrimitive : negated conditional → NOT_SCHEDULED
10. toPrimitive : changed conditional boundary → NOT_SCHEDULED
11. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
12. toPrimitive : negated conditional → NOT_SCHEDULED
13. toPrimitive : changed conditional boundary → NOT_SCHEDULED
14. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
15. toPrimitive : negated conditional → NOT_SCHEDULED
16. toPrimitive : changed conditional boundary → NOT_SCHEDULED
17. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
18. toPrimitive : negated conditional → NOT_SCHEDULED
19. toPrimitive : changed conditional boundary → NOT_SCHEDULED
20. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
21. toPrimitive : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < array.length; i++) {
4504
            final Short b = array[i];
4505 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
            result[i] = (b == null ? valueForNull : b.shortValue());
4506
        }
4507 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return result;
4508
    }
4509
4510
    /**
4511
     * <p>Converts an array of primitive shorts to objects.
4512
     *
4513
     * <p>This method returns {@code null} for a {@code null} input array.
4514
     *
4515
     * @param array  a {@code short} array
4516
     * @return a {@code Short} array, {@code null} if null array input
4517
     */
4518
    public static Short[] toObject(final short[] array) {
4519 7 1. toObject : negated conditional → NOT_SCHEDULED
2. toObject : negated conditional → NOT_SCHEDULED
3. toObject : negated conditional → NOT_SCHEDULED
4. toObject : negated conditional → NOT_SCHEDULED
5. toObject : negated conditional → NOT_SCHEDULED
6. toObject : negated conditional → NOT_SCHEDULED
7. toObject : negated conditional → NOT_SCHEDULED
        if (array == null) {
4520 7 1. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
4521 7 1. toObject : negated conditional → NOT_SCHEDULED
2. toObject : negated conditional → NOT_SCHEDULED
3. toObject : negated conditional → NOT_SCHEDULED
4. toObject : negated conditional → NOT_SCHEDULED
5. toObject : negated conditional → NOT_SCHEDULED
6. toObject : negated conditional → NOT_SCHEDULED
7. toObject : negated conditional → NOT_SCHEDULED
        } else if (array.length == 0) {
4522 7 1. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_SHORT_OBJECT_ARRAY;
4523
        }
4524
        final Short[] result = new Short[array.length];
4525 21 1. toObject : changed conditional boundary → NOT_SCHEDULED
2. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
3. toObject : negated conditional → NOT_SCHEDULED
4. toObject : changed conditional boundary → NOT_SCHEDULED
5. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
6. toObject : negated conditional → NOT_SCHEDULED
7. toObject : changed conditional boundary → NOT_SCHEDULED
8. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
9. toObject : negated conditional → NOT_SCHEDULED
10. toObject : changed conditional boundary → NOT_SCHEDULED
11. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
12. toObject : negated conditional → NOT_SCHEDULED
13. toObject : changed conditional boundary → NOT_SCHEDULED
14. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
15. toObject : negated conditional → NOT_SCHEDULED
16. toObject : changed conditional boundary → NOT_SCHEDULED
17. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
18. toObject : negated conditional → NOT_SCHEDULED
19. toObject : changed conditional boundary → NOT_SCHEDULED
20. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
21. toObject : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < array.length; i++) {
4526
            result[i] = Short.valueOf(array[i]);
4527
        }
4528 7 1. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return result;
4529
    }
4530
4531
    // Byte array converters
4532
    // ----------------------------------------------------------------------
4533
    /**
4534
     * <p>Converts an array of object Bytes to primitives.
4535
     *
4536
     * <p>This method returns {@code null} for a {@code null} input array.
4537
     *
4538
     * @param array  a {@code Byte} array, may be {@code null}
4539
     * @return a {@code byte} array, {@code null} if null array input
4540
     * @throws NullPointerException if array content is {@code null}
4541
     */
4542
    public static byte[] toPrimitive(final Byte[] array) {
4543 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
        if (array == null) {
4544 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
4545 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
        } else if (array.length == 0) {
4546 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_BYTE_ARRAY;
4547
        }
4548
        final byte[] result = new byte[array.length];
4549 21 1. toPrimitive : changed conditional boundary → NOT_SCHEDULED
2. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : changed conditional boundary → NOT_SCHEDULED
5. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : changed conditional boundary → NOT_SCHEDULED
8. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
9. toPrimitive : negated conditional → NOT_SCHEDULED
10. toPrimitive : changed conditional boundary → NOT_SCHEDULED
11. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
12. toPrimitive : negated conditional → NOT_SCHEDULED
13. toPrimitive : changed conditional boundary → NOT_SCHEDULED
14. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
15. toPrimitive : negated conditional → NOT_SCHEDULED
16. toPrimitive : changed conditional boundary → NOT_SCHEDULED
17. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
18. toPrimitive : negated conditional → NOT_SCHEDULED
19. toPrimitive : changed conditional boundary → NOT_SCHEDULED
20. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
21. toPrimitive : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < array.length; i++) {
4550
            result[i] = array[i].byteValue();
4551
        }
4552 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return result;
4553
    }
4554
4555
    /**
4556
     * <p>Converts an array of object Bytes to primitives handling {@code null}.
4557
     *
4558
     * <p>This method returns {@code null} for a {@code null} input array.
4559
     *
4560
     * @param array  a {@code Byte} array, may be {@code null}
4561
     * @param valueForNull  the value to insert if {@code null} found
4562
     * @return a {@code byte} array, {@code null} if null array input
4563
     */
4564
    public static byte[] toPrimitive(final Byte[] array, final byte valueForNull) {
4565 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
        if (array == null) {
4566 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
4567 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
        } else if (array.length == 0) {
4568 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_BYTE_ARRAY;
4569
        }
4570
        final byte[] result = new byte[array.length];
4571 21 1. toPrimitive : changed conditional boundary → NOT_SCHEDULED
2. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : changed conditional boundary → NOT_SCHEDULED
5. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : changed conditional boundary → NOT_SCHEDULED
8. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
9. toPrimitive : negated conditional → NOT_SCHEDULED
10. toPrimitive : changed conditional boundary → NOT_SCHEDULED
11. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
12. toPrimitive : negated conditional → NOT_SCHEDULED
13. toPrimitive : changed conditional boundary → NOT_SCHEDULED
14. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
15. toPrimitive : negated conditional → NOT_SCHEDULED
16. toPrimitive : changed conditional boundary → NOT_SCHEDULED
17. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
18. toPrimitive : negated conditional → NOT_SCHEDULED
19. toPrimitive : changed conditional boundary → NOT_SCHEDULED
20. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
21. toPrimitive : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < array.length; i++) {
4572
            final Byte b = array[i];
4573 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
            result[i] = (b == null ? valueForNull : b.byteValue());
4574
        }
4575 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return result;
4576
    }
4577
4578
    /**
4579
     * <p>Converts an array of primitive bytes to objects.
4580
     *
4581
     * <p>This method returns {@code null} for a {@code null} input array.
4582
     *
4583
     * @param array  a {@code byte} array
4584
     * @return a {@code Byte} array, {@code null} if null array input
4585
     */
4586
    public static Byte[] toObject(final byte[] array) {
4587 7 1. toObject : negated conditional → NOT_SCHEDULED
2. toObject : negated conditional → NOT_SCHEDULED
3. toObject : negated conditional → NOT_SCHEDULED
4. toObject : negated conditional → NOT_SCHEDULED
5. toObject : negated conditional → NOT_SCHEDULED
6. toObject : negated conditional → NOT_SCHEDULED
7. toObject : negated conditional → NOT_SCHEDULED
        if (array == null) {
4588 7 1. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
4589 7 1. toObject : negated conditional → NOT_SCHEDULED
2. toObject : negated conditional → NOT_SCHEDULED
3. toObject : negated conditional → NOT_SCHEDULED
4. toObject : negated conditional → NOT_SCHEDULED
5. toObject : negated conditional → NOT_SCHEDULED
6. toObject : negated conditional → NOT_SCHEDULED
7. toObject : negated conditional → NOT_SCHEDULED
        } else if (array.length == 0) {
4590 7 1. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_BYTE_OBJECT_ARRAY;
4591
        }
4592
        final Byte[] result = new Byte[array.length];
4593 21 1. toObject : changed conditional boundary → NOT_SCHEDULED
2. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
3. toObject : negated conditional → NOT_SCHEDULED
4. toObject : changed conditional boundary → NOT_SCHEDULED
5. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
6. toObject : negated conditional → NOT_SCHEDULED
7. toObject : changed conditional boundary → NOT_SCHEDULED
8. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
9. toObject : negated conditional → NOT_SCHEDULED
10. toObject : changed conditional boundary → NOT_SCHEDULED
11. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
12. toObject : negated conditional → NOT_SCHEDULED
13. toObject : changed conditional boundary → NOT_SCHEDULED
14. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
15. toObject : negated conditional → NOT_SCHEDULED
16. toObject : changed conditional boundary → NOT_SCHEDULED
17. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
18. toObject : negated conditional → NOT_SCHEDULED
19. toObject : changed conditional boundary → NOT_SCHEDULED
20. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
21. toObject : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < array.length; i++) {
4594
            result[i] = Byte.valueOf(array[i]);
4595
        }
4596 7 1. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return result;
4597
    }
4598
4599
    // Double array converters
4600
    // ----------------------------------------------------------------------
4601
    /**
4602
     * <p>Converts an array of object Doubles to primitives.
4603
     *
4604
     * <p>This method returns {@code null} for a {@code null} input array.
4605
     *
4606
     * @param array  a {@code Double} array, may be {@code null}
4607
     * @return a {@code double} array, {@code null} if null array input
4608
     * @throws NullPointerException if array content is {@code null}
4609
     */
4610
    public static double[] toPrimitive(final Double[] array) {
4611 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
        if (array == null) {
4612 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
4613 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
        } else if (array.length == 0) {
4614 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_DOUBLE_ARRAY;
4615
        }
4616
        final double[] result = new double[array.length];
4617 21 1. toPrimitive : changed conditional boundary → NOT_SCHEDULED
2. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : changed conditional boundary → NOT_SCHEDULED
5. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : changed conditional boundary → NOT_SCHEDULED
8. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
9. toPrimitive : negated conditional → NOT_SCHEDULED
10. toPrimitive : changed conditional boundary → NOT_SCHEDULED
11. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
12. toPrimitive : negated conditional → NOT_SCHEDULED
13. toPrimitive : changed conditional boundary → NOT_SCHEDULED
14. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
15. toPrimitive : negated conditional → NOT_SCHEDULED
16. toPrimitive : changed conditional boundary → NOT_SCHEDULED
17. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
18. toPrimitive : negated conditional → NOT_SCHEDULED
19. toPrimitive : changed conditional boundary → NOT_SCHEDULED
20. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
21. toPrimitive : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < array.length; i++) {
4618
            result[i] = array[i].doubleValue();
4619
        }
4620 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return result;
4621
    }
4622
4623
    /**
4624
     * <p>Converts an array of object Doubles to primitives handling {@code null}.
4625
     *
4626
     * <p>This method returns {@code null} for a {@code null} input array.
4627
     *
4628
     * @param array  a {@code Double} array, may be {@code null}
4629
     * @param valueForNull  the value to insert if {@code null} found
4630
     * @return a {@code double} array, {@code null} if null array input
4631
     */
4632
    public static double[] toPrimitive(final Double[] array, final double valueForNull) {
4633 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
        if (array == null) {
4634 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
4635 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
        } else if (array.length == 0) {
4636 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_DOUBLE_ARRAY;
4637
        }
4638
        final double[] result = new double[array.length];
4639 21 1. toPrimitive : changed conditional boundary → NOT_SCHEDULED
2. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : changed conditional boundary → NOT_SCHEDULED
5. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : changed conditional boundary → NOT_SCHEDULED
8. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
9. toPrimitive : negated conditional → NOT_SCHEDULED
10. toPrimitive : changed conditional boundary → NOT_SCHEDULED
11. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
12. toPrimitive : negated conditional → NOT_SCHEDULED
13. toPrimitive : changed conditional boundary → NOT_SCHEDULED
14. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
15. toPrimitive : negated conditional → NOT_SCHEDULED
16. toPrimitive : changed conditional boundary → NOT_SCHEDULED
17. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
18. toPrimitive : negated conditional → NOT_SCHEDULED
19. toPrimitive : changed conditional boundary → NOT_SCHEDULED
20. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
21. toPrimitive : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < array.length; i++) {
4640
            final Double b = array[i];
4641 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
            result[i] = (b == null ? valueForNull : b.doubleValue());
4642
        }
4643 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return result;
4644
    }
4645
4646
    /**
4647
     * <p>Converts an array of primitive doubles to objects.
4648
     *
4649
     * <p>This method returns {@code null} for a {@code null} input array.
4650
     *
4651
     * @param array  a {@code double} array
4652
     * @return a {@code Double} array, {@code null} if null array input
4653
     */
4654
    public static Double[] toObject(final double[] array) {
4655 7 1. toObject : negated conditional → NOT_SCHEDULED
2. toObject : negated conditional → NOT_SCHEDULED
3. toObject : negated conditional → NOT_SCHEDULED
4. toObject : negated conditional → NOT_SCHEDULED
5. toObject : negated conditional → NOT_SCHEDULED
6. toObject : negated conditional → NOT_SCHEDULED
7. toObject : negated conditional → NOT_SCHEDULED
        if (array == null) {
4656 7 1. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
4657 7 1. toObject : negated conditional → NOT_SCHEDULED
2. toObject : negated conditional → NOT_SCHEDULED
3. toObject : negated conditional → NOT_SCHEDULED
4. toObject : negated conditional → NOT_SCHEDULED
5. toObject : negated conditional → NOT_SCHEDULED
6. toObject : negated conditional → NOT_SCHEDULED
7. toObject : negated conditional → NOT_SCHEDULED
        } else if (array.length == 0) {
4658 7 1. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_DOUBLE_OBJECT_ARRAY;
4659
        }
4660
        final Double[] result = new Double[array.length];
4661 21 1. toObject : changed conditional boundary → NOT_SCHEDULED
2. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
3. toObject : negated conditional → NOT_SCHEDULED
4. toObject : changed conditional boundary → NOT_SCHEDULED
5. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
6. toObject : negated conditional → NOT_SCHEDULED
7. toObject : changed conditional boundary → NOT_SCHEDULED
8. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
9. toObject : negated conditional → NOT_SCHEDULED
10. toObject : changed conditional boundary → NOT_SCHEDULED
11. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
12. toObject : negated conditional → NOT_SCHEDULED
13. toObject : changed conditional boundary → NOT_SCHEDULED
14. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
15. toObject : negated conditional → NOT_SCHEDULED
16. toObject : changed conditional boundary → NOT_SCHEDULED
17. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
18. toObject : negated conditional → NOT_SCHEDULED
19. toObject : changed conditional boundary → NOT_SCHEDULED
20. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
21. toObject : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < array.length; i++) {
4662
            result[i] = Double.valueOf(array[i]);
4663
        }
4664 7 1. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return result;
4665
    }
4666
4667
    //   Float array converters
4668
    // ----------------------------------------------------------------------
4669
    /**
4670
     * <p>Converts an array of object Floats to primitives.
4671
     *
4672
     * <p>This method returns {@code null} for a {@code null} input array.
4673
     *
4674
     * @param array  a {@code Float} array, may be {@code null}
4675
     * @return a {@code float} array, {@code null} if null array input
4676
     * @throws NullPointerException if array content is {@code null}
4677
     */
4678
    public static float[] toPrimitive(final Float[] array) {
4679 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
        if (array == null) {
4680 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
4681 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
        } else if (array.length == 0) {
4682 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_FLOAT_ARRAY;
4683
        }
4684
        final float[] result = new float[array.length];
4685 21 1. toPrimitive : changed conditional boundary → NOT_SCHEDULED
2. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : changed conditional boundary → NOT_SCHEDULED
5. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : changed conditional boundary → NOT_SCHEDULED
8. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
9. toPrimitive : negated conditional → NOT_SCHEDULED
10. toPrimitive : changed conditional boundary → NOT_SCHEDULED
11. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
12. toPrimitive : negated conditional → NOT_SCHEDULED
13. toPrimitive : changed conditional boundary → NOT_SCHEDULED
14. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
15. toPrimitive : negated conditional → NOT_SCHEDULED
16. toPrimitive : changed conditional boundary → NOT_SCHEDULED
17. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
18. toPrimitive : negated conditional → NOT_SCHEDULED
19. toPrimitive : changed conditional boundary → NOT_SCHEDULED
20. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
21. toPrimitive : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < array.length; i++) {
4686
            result[i] = array[i].floatValue();
4687
        }
4688 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return result;
4689
    }
4690
4691
    /**
4692
     * <p>Converts an array of object Floats to primitives handling {@code null}.
4693
     *
4694
     * <p>This method returns {@code null} for a {@code null} input array.
4695
     *
4696
     * @param array  a {@code Float} array, may be {@code null}
4697
     * @param valueForNull  the value to insert if {@code null} found
4698
     * @return a {@code float} array, {@code null} if null array input
4699
     */
4700
    public static float[] toPrimitive(final Float[] array, final float valueForNull) {
4701 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
        if (array == null) {
4702 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
4703 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
        } else if (array.length == 0) {
4704 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_FLOAT_ARRAY;
4705
        }
4706
        final float[] result = new float[array.length];
4707 21 1. toPrimitive : changed conditional boundary → NOT_SCHEDULED
2. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : changed conditional boundary → NOT_SCHEDULED
5. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : changed conditional boundary → NOT_SCHEDULED
8. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
9. toPrimitive : negated conditional → NOT_SCHEDULED
10. toPrimitive : changed conditional boundary → NOT_SCHEDULED
11. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
12. toPrimitive : negated conditional → NOT_SCHEDULED
13. toPrimitive : changed conditional boundary → NOT_SCHEDULED
14. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
15. toPrimitive : negated conditional → NOT_SCHEDULED
16. toPrimitive : changed conditional boundary → NOT_SCHEDULED
17. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
18. toPrimitive : negated conditional → NOT_SCHEDULED
19. toPrimitive : changed conditional boundary → NOT_SCHEDULED
20. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
21. toPrimitive : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < array.length; i++) {
4708
            final Float b = array[i];
4709 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
            result[i] = (b == null ? valueForNull : b.floatValue());
4710
        }
4711 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return result;
4712
    }
4713
4714
    /**
4715
     * <p>Converts an array of primitive floats to objects.
4716
     *
4717
     * <p>This method returns {@code null} for a {@code null} input array.
4718
     *
4719
     * @param array  a {@code float} array
4720
     * @return a {@code Float} array, {@code null} if null array input
4721
     */
4722
    public static Float[] toObject(final float[] array) {
4723 7 1. toObject : negated conditional → NOT_SCHEDULED
2. toObject : negated conditional → NOT_SCHEDULED
3. toObject : negated conditional → NOT_SCHEDULED
4. toObject : negated conditional → NOT_SCHEDULED
5. toObject : negated conditional → NOT_SCHEDULED
6. toObject : negated conditional → NOT_SCHEDULED
7. toObject : negated conditional → NOT_SCHEDULED
        if (array == null) {
4724 7 1. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
4725 7 1. toObject : negated conditional → NOT_SCHEDULED
2. toObject : negated conditional → NOT_SCHEDULED
3. toObject : negated conditional → NOT_SCHEDULED
4. toObject : negated conditional → NOT_SCHEDULED
5. toObject : negated conditional → NOT_SCHEDULED
6. toObject : negated conditional → NOT_SCHEDULED
7. toObject : negated conditional → NOT_SCHEDULED
        } else if (array.length == 0) {
4726 7 1. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_FLOAT_OBJECT_ARRAY;
4727
        }
4728
        final Float[] result = new Float[array.length];
4729 21 1. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
2. toObject : negated conditional → NOT_SCHEDULED
3. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
4. toObject : negated conditional → NOT_SCHEDULED
5. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
6. toObject : negated conditional → NOT_SCHEDULED
7. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
8. toObject : negated conditional → NOT_SCHEDULED
9. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
10. toObject : negated conditional → NOT_SCHEDULED
11. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
12. toObject : negated conditional → NOT_SCHEDULED
13. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
14. toObject : negated conditional → NOT_SCHEDULED
15. toObject : changed conditional boundary → KILLED
16. toObject : changed conditional boundary → KILLED
17. toObject : changed conditional boundary → KILLED
18. toObject : changed conditional boundary → KILLED
19. toObject : changed conditional boundary → KILLED
20. toObject : changed conditional boundary → KILLED
21. toObject : changed conditional boundary → KILLED
        for (int i = 0; i < array.length; i++) {
4730
            result[i] = Float.valueOf(array[i]);
4731
        }
4732 7 1. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return result;
4733
    }
4734
4735
    /**
4736
     * <p>Create an array of primitive type from an array of wrapper types.
4737
     *
4738
     * <p>This method returns {@code null} for a {@code null} input array.
4739
     *
4740
     * @param array  an array of wrapper object
4741
     * @return an array of the corresponding primitive type, or the original array
4742
     * @since 3.5
4743
     */
4744
    public static Object toPrimitive(final Object array) {
4745 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
        if (array == null) {
4746 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
4747
        }
4748
        Class<?> ct = array.getClass().getComponentType();
4749
        Class<?> pt = ClassUtils.wrapperToPrimitive(ct);
4750 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
        if(Integer.TYPE.equals(pt)) {
4751 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return toPrimitive((Integer[]) array);
4752
        }
4753 7 1. toPrimitive : negated conditional → NO_COVERAGE
2. toPrimitive : negated conditional → NO_COVERAGE
3. toPrimitive : negated conditional → NO_COVERAGE
4. toPrimitive : negated conditional → NO_COVERAGE
5. toPrimitive : negated conditional → NO_COVERAGE
6. toPrimitive : negated conditional → NO_COVERAGE
7. toPrimitive : negated conditional → NO_COVERAGE
        if(Long.TYPE.equals(pt)) {
4754 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
            return toPrimitive((Long[]) array);
4755
        }
4756 7 1. toPrimitive : negated conditional → NO_COVERAGE
2. toPrimitive : negated conditional → NO_COVERAGE
3. toPrimitive : negated conditional → NO_COVERAGE
4. toPrimitive : negated conditional → NO_COVERAGE
5. toPrimitive : negated conditional → NO_COVERAGE
6. toPrimitive : negated conditional → NO_COVERAGE
7. toPrimitive : negated conditional → NO_COVERAGE
        if(Short.TYPE.equals(pt)) {
4757 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
            return toPrimitive((Short[]) array);
4758
        }
4759 7 1. toPrimitive : negated conditional → NO_COVERAGE
2. toPrimitive : negated conditional → NO_COVERAGE
3. toPrimitive : negated conditional → NO_COVERAGE
4. toPrimitive : negated conditional → NO_COVERAGE
5. toPrimitive : negated conditional → NO_COVERAGE
6. toPrimitive : negated conditional → NO_COVERAGE
7. toPrimitive : negated conditional → NO_COVERAGE
        if(Double.TYPE.equals(pt)) {
4760 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
            return toPrimitive((Double[]) array);
4761
        }
4762 7 1. toPrimitive : negated conditional → NO_COVERAGE
2. toPrimitive : negated conditional → NO_COVERAGE
3. toPrimitive : negated conditional → NO_COVERAGE
4. toPrimitive : negated conditional → NO_COVERAGE
5. toPrimitive : negated conditional → NO_COVERAGE
6. toPrimitive : negated conditional → NO_COVERAGE
7. toPrimitive : negated conditional → NO_COVERAGE
        if(Float.TYPE.equals(pt)) {
4763 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
            return toPrimitive((Float[]) array);
4764
        }
4765 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
        return array;
4766
    }
4767
4768
    // Boolean array converters
4769
    // ----------------------------------------------------------------------
4770
    /**
4771
     * <p>Converts an array of object Booleans to primitives.
4772
     *
4773
     * <p>This method returns {@code null} for a {@code null} input array.
4774
     *
4775
     * @param array  a {@code Boolean} array, may be {@code null}
4776
     * @return a {@code boolean} array, {@code null} if null array input
4777
     * @throws NullPointerException if array content is {@code null}
4778
     */
4779
    public static boolean[] toPrimitive(final Boolean[] array) {
4780 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
        if (array == null) {
4781 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
4782 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
        } else if (array.length == 0) {
4783 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_BOOLEAN_ARRAY;
4784
        }
4785
        final boolean[] result = new boolean[array.length];
4786 21 1. toPrimitive : changed conditional boundary → NOT_SCHEDULED
2. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : changed conditional boundary → NOT_SCHEDULED
5. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : changed conditional boundary → NOT_SCHEDULED
8. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
9. toPrimitive : negated conditional → NOT_SCHEDULED
10. toPrimitive : changed conditional boundary → NOT_SCHEDULED
11. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
12. toPrimitive : negated conditional → NOT_SCHEDULED
13. toPrimitive : changed conditional boundary → NOT_SCHEDULED
14. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
15. toPrimitive : negated conditional → NOT_SCHEDULED
16. toPrimitive : changed conditional boundary → NOT_SCHEDULED
17. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
18. toPrimitive : negated conditional → NOT_SCHEDULED
19. toPrimitive : changed conditional boundary → NOT_SCHEDULED
20. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
21. toPrimitive : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < array.length; i++) {
4787
            result[i] = array[i].booleanValue();
4788
        }
4789 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return result;
4790
    }
4791
4792
    /**
4793
     * <p>Converts an array of object Booleans to primitives handling {@code null}.
4794
     *
4795
     * <p>This method returns {@code null} for a {@code null} input array.
4796
     *
4797
     * @param array  a {@code Boolean} array, may be {@code null}
4798
     * @param valueForNull  the value to insert if {@code null} found
4799
     * @return a {@code boolean} array, {@code null} if null array input
4800
     */
4801
    public static boolean[] toPrimitive(final Boolean[] array, final boolean valueForNull) {
4802 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
        if (array == null) {
4803 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
4804 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
        } else if (array.length == 0) {
4805 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_BOOLEAN_ARRAY;
4806
        }
4807
        final boolean[] result = new boolean[array.length];
4808 21 1. toPrimitive : changed conditional boundary → NOT_SCHEDULED
2. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : changed conditional boundary → NOT_SCHEDULED
5. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : changed conditional boundary → NOT_SCHEDULED
8. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
9. toPrimitive : negated conditional → NOT_SCHEDULED
10. toPrimitive : changed conditional boundary → NOT_SCHEDULED
11. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
12. toPrimitive : negated conditional → NOT_SCHEDULED
13. toPrimitive : changed conditional boundary → NOT_SCHEDULED
14. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
15. toPrimitive : negated conditional → NOT_SCHEDULED
16. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
17. toPrimitive : negated conditional → NOT_SCHEDULED
18. toPrimitive : Changed increment from 1 to -1 → NOT_SCHEDULED
19. toPrimitive : negated conditional → NOT_SCHEDULED
20. toPrimitive : changed conditional boundary → KILLED
21. toPrimitive : changed conditional boundary → KILLED
        for (int i = 0; i < array.length; i++) {
4809
            final Boolean b = array[i];
4810 7 1. toPrimitive : negated conditional → NOT_SCHEDULED
2. toPrimitive : negated conditional → NOT_SCHEDULED
3. toPrimitive : negated conditional → NOT_SCHEDULED
4. toPrimitive : negated conditional → NOT_SCHEDULED
5. toPrimitive : negated conditional → NOT_SCHEDULED
6. toPrimitive : negated conditional → NOT_SCHEDULED
7. toPrimitive : negated conditional → NOT_SCHEDULED
            result[i] = (b == null ? valueForNull : b.booleanValue());
4811
        }
4812 7 1. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toPrimitive : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return result;
4813
    }
4814
4815
    /**
4816
     * <p>Converts an array of primitive booleans to objects.
4817
     *
4818
     * <p>This method returns {@code null} for a {@code null} input array.
4819
     *
4820
     * @param array  a {@code boolean} array
4821
     * @return a {@code Boolean} array, {@code null} if null array input
4822
     */
4823
    public static Boolean[] toObject(final boolean[] array) {
4824 7 1. toObject : negated conditional → NOT_SCHEDULED
2. toObject : negated conditional → NOT_SCHEDULED
3. toObject : negated conditional → NOT_SCHEDULED
4. toObject : negated conditional → NOT_SCHEDULED
5. toObject : negated conditional → NOT_SCHEDULED
6. toObject : negated conditional → NOT_SCHEDULED
7. toObject : negated conditional → NOT_SCHEDULED
        if (array == null) {
4825 7 1. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return null;
4826 7 1. toObject : negated conditional → NOT_SCHEDULED
2. toObject : negated conditional → NOT_SCHEDULED
3. toObject : negated conditional → NOT_SCHEDULED
4. toObject : negated conditional → NOT_SCHEDULED
5. toObject : negated conditional → NOT_SCHEDULED
6. toObject : negated conditional → NOT_SCHEDULED
7. toObject : negated conditional → NOT_SCHEDULED
        } else if (array.length == 0) {
4827 7 1. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return EMPTY_BOOLEAN_OBJECT_ARRAY;
4828
        }
4829
        final Boolean[] result = new Boolean[array.length];
4830 21 1. toObject : changed conditional boundary → NOT_SCHEDULED
2. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
3. toObject : negated conditional → NOT_SCHEDULED
4. toObject : changed conditional boundary → NOT_SCHEDULED
5. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
6. toObject : negated conditional → NOT_SCHEDULED
7. toObject : changed conditional boundary → NOT_SCHEDULED
8. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
9. toObject : negated conditional → NOT_SCHEDULED
10. toObject : changed conditional boundary → NOT_SCHEDULED
11. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
12. toObject : negated conditional → NOT_SCHEDULED
13. toObject : changed conditional boundary → NOT_SCHEDULED
14. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
15. toObject : negated conditional → NOT_SCHEDULED
16. toObject : changed conditional boundary → NOT_SCHEDULED
17. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
18. toObject : negated conditional → NOT_SCHEDULED
19. toObject : changed conditional boundary → NOT_SCHEDULED
20. toObject : Changed increment from 1 to -1 → NOT_SCHEDULED
21. toObject : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < array.length; i++) {
4831 7 1. toObject : negated conditional → NOT_SCHEDULED
2. toObject : negated conditional → NOT_SCHEDULED
3. toObject : negated conditional → NOT_SCHEDULED
4. toObject : negated conditional → NOT_SCHEDULED
5. toObject : negated conditional → NOT_SCHEDULED
6. toObject : negated conditional → NOT_SCHEDULED
7. toObject : negated conditional → NOT_SCHEDULED
            result[i] = (array[i] ? Boolean.TRUE : Boolean.FALSE);
4832
        }
4833 7 1. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. toObject : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return result;
4834
    }
4835
4836
    // ----------------------------------------------------------------------
4837
    /**
4838
     * <p>Checks if an array of Objects is empty or {@code null}.
4839
     *
4840
     * @param array  the array to test
4841
     * @return {@code true} if the array is empty or {@code null}
4842
     * @since 2.1
4843
     */
4844
    public static boolean isEmpty(final Object[] array) {
4845 14 1. isEmpty : negated conditional → NOT_SCHEDULED
2. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isEmpty : negated conditional → NOT_SCHEDULED
4. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isEmpty : negated conditional → NOT_SCHEDULED
6. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isEmpty : negated conditional → NOT_SCHEDULED
8. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. isEmpty : negated conditional → NOT_SCHEDULED
10. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. isEmpty : negated conditional → NOT_SCHEDULED
12. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. isEmpty : negated conditional → NOT_SCHEDULED
14. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return getLength(array) == 0;
4846
    }
4847
4848
    /**
4849
     * <p>Checks if an array of primitive longs is empty or {@code null}.
4850
     *
4851
     * @param array  the array to test
4852
     * @return {@code true} if the array is empty or {@code null}
4853
     * @since 2.1
4854
     */
4855
    public static boolean isEmpty(final long[] array) {
4856 14 1. isEmpty : negated conditional → NOT_SCHEDULED
2. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isEmpty : negated conditional → NOT_SCHEDULED
4. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isEmpty : negated conditional → NOT_SCHEDULED
6. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isEmpty : negated conditional → NOT_SCHEDULED
8. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. isEmpty : negated conditional → NOT_SCHEDULED
10. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. isEmpty : negated conditional → NOT_SCHEDULED
12. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. isEmpty : negated conditional → NOT_SCHEDULED
14. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return getLength(array) == 0;
4857
    }
4858
4859
    /**
4860
     * <p>Checks if an array of primitive ints is empty or {@code null}.
4861
     *
4862
     * @param array  the array to test
4863
     * @return {@code true} if the array is empty or {@code null}
4864
     * @since 2.1
4865
     */
4866
    public static boolean isEmpty(final int[] array) {
4867 14 1. isEmpty : negated conditional → NOT_SCHEDULED
2. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isEmpty : negated conditional → NOT_SCHEDULED
4. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isEmpty : negated conditional → NOT_SCHEDULED
6. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isEmpty : negated conditional → NOT_SCHEDULED
8. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. isEmpty : negated conditional → NOT_SCHEDULED
10. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. isEmpty : negated conditional → NOT_SCHEDULED
12. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. isEmpty : negated conditional → NOT_SCHEDULED
14. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return getLength(array) == 0;
4868
    }
4869
4870
    /**
4871
     * <p>Checks if an array of primitive shorts is empty or {@code null}.
4872
     *
4873
     * @param array  the array to test
4874
     * @return {@code true} if the array is empty or {@code null}
4875
     * @since 2.1
4876
     */
4877
    public static boolean isEmpty(final short[] array) {
4878 14 1. isEmpty : negated conditional → NOT_SCHEDULED
2. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isEmpty : negated conditional → NOT_SCHEDULED
4. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isEmpty : negated conditional → NOT_SCHEDULED
6. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isEmpty : negated conditional → NOT_SCHEDULED
8. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. isEmpty : negated conditional → NOT_SCHEDULED
10. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. isEmpty : negated conditional → NOT_SCHEDULED
12. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. isEmpty : negated conditional → NOT_SCHEDULED
14. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return getLength(array) == 0;
4879
    }
4880
4881
    /**
4882
     * <p>Checks if an array of primitive chars is empty or {@code null}.
4883
     *
4884
     * @param array  the array to test
4885
     * @return {@code true} if the array is empty or {@code null}
4886
     * @since 2.1
4887
     */
4888
    public static boolean isEmpty(final char[] array) {
4889 14 1. isEmpty : negated conditional → NOT_SCHEDULED
2. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isEmpty : negated conditional → NOT_SCHEDULED
4. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isEmpty : negated conditional → NOT_SCHEDULED
6. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isEmpty : negated conditional → NOT_SCHEDULED
8. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. isEmpty : negated conditional → NOT_SCHEDULED
10. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. isEmpty : negated conditional → NOT_SCHEDULED
12. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. isEmpty : negated conditional → NOT_SCHEDULED
14. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return getLength(array) == 0;
4890
    }
4891
4892
    /**
4893
     * <p>Checks if an array of primitive bytes is empty or {@code null}.
4894
     *
4895
     * @param array  the array to test
4896
     * @return {@code true} if the array is empty or {@code null}
4897
     * @since 2.1
4898
     */
4899
    public static boolean isEmpty(final byte[] array) {
4900 14 1. isEmpty : negated conditional → NOT_SCHEDULED
2. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isEmpty : negated conditional → NOT_SCHEDULED
4. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isEmpty : negated conditional → NOT_SCHEDULED
6. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isEmpty : negated conditional → NOT_SCHEDULED
8. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. isEmpty : negated conditional → NOT_SCHEDULED
10. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. isEmpty : negated conditional → NOT_SCHEDULED
12. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. isEmpty : negated conditional → NOT_SCHEDULED
14. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return getLength(array) == 0;
4901
    }
4902
4903
    /**
4904
     * <p>Checks if an array of primitive doubles is empty or {@code null}.
4905
     *
4906
     * @param array  the array to test
4907
     * @return {@code true} if the array is empty or {@code null}
4908
     * @since 2.1
4909
     */
4910
    public static boolean isEmpty(final double[] array) {
4911 14 1. isEmpty : negated conditional → NOT_SCHEDULED
2. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isEmpty : negated conditional → NOT_SCHEDULED
4. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isEmpty : negated conditional → NOT_SCHEDULED
6. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isEmpty : negated conditional → NOT_SCHEDULED
8. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. isEmpty : negated conditional → NOT_SCHEDULED
10. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. isEmpty : negated conditional → NOT_SCHEDULED
12. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. isEmpty : negated conditional → NOT_SCHEDULED
14. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return getLength(array) == 0;
4912
    }
4913
4914
    /**
4915
     * <p>Checks if an array of primitive floats is empty or {@code null}.
4916
     *
4917
     * @param array  the array to test
4918
     * @return {@code true} if the array is empty or {@code null}
4919
     * @since 2.1
4920
     */
4921
    public static boolean isEmpty(final float[] array) {
4922 14 1. isEmpty : negated conditional → NOT_SCHEDULED
2. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isEmpty : negated conditional → NOT_SCHEDULED
4. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isEmpty : negated conditional → NOT_SCHEDULED
6. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isEmpty : negated conditional → NOT_SCHEDULED
8. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. isEmpty : negated conditional → NOT_SCHEDULED
10. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. isEmpty : negated conditional → NOT_SCHEDULED
12. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. isEmpty : negated conditional → NOT_SCHEDULED
14. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return getLength(array) == 0;
4923
    }
4924
4925
    /**
4926
     * <p>Checks if an array of primitive booleans is empty or {@code null}.
4927
     *
4928
     * @param array  the array to test
4929
     * @return {@code true} if the array is empty or {@code null}
4930
     * @since 2.1
4931
     */
4932
    public static boolean isEmpty(final boolean[] array) {
4933 14 1. isEmpty : negated conditional → NOT_SCHEDULED
2. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isEmpty : negated conditional → NOT_SCHEDULED
4. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isEmpty : negated conditional → NOT_SCHEDULED
6. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isEmpty : negated conditional → NOT_SCHEDULED
8. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. isEmpty : negated conditional → NOT_SCHEDULED
10. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. isEmpty : negated conditional → NOT_SCHEDULED
12. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. isEmpty : negated conditional → NOT_SCHEDULED
14. isEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return getLength(array) == 0;
4934
    }
4935
4936
    // ----------------------------------------------------------------------
4937
    /**
4938
     * <p>Checks if an array of Objects is not empty and not {@code null}.
4939
     *
4940
     * @param <T> the component type of the array
4941
     * @param array  the array to test
4942
     * @return {@code true} if the array is not empty and not {@code null}
4943
     * @since 2.5
4944
     */
4945
     public static <T> boolean isNotEmpty(final T[] array) {
4946 14 1. isNotEmpty : negated conditional → NOT_SCHEDULED
2. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isNotEmpty : negated conditional → NOT_SCHEDULED
4. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isNotEmpty : negated conditional → NOT_SCHEDULED
6. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isNotEmpty : negated conditional → NOT_SCHEDULED
8. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. isNotEmpty : negated conditional → NOT_SCHEDULED
10. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. isNotEmpty : negated conditional → NOT_SCHEDULED
12. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. isNotEmpty : negated conditional → NOT_SCHEDULED
14. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
         return !isEmpty(array);
4947
     }
4948
4949
    /**
4950
     * <p>Checks if an array of primitive longs is not empty and not {@code null}.
4951
     *
4952
     * @param array  the array to test
4953
     * @return {@code true} if the array is not empty and not {@code null}
4954
     * @since 2.5
4955
     */
4956
    public static boolean isNotEmpty(final long[] array) {
4957 14 1. isNotEmpty : negated conditional → NOT_SCHEDULED
2. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isNotEmpty : negated conditional → NOT_SCHEDULED
4. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isNotEmpty : negated conditional → NOT_SCHEDULED
6. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isNotEmpty : negated conditional → NOT_SCHEDULED
8. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. isNotEmpty : negated conditional → NOT_SCHEDULED
10. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. isNotEmpty : negated conditional → NOT_SCHEDULED
12. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. isNotEmpty : negated conditional → NOT_SCHEDULED
14. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return !isEmpty(array);
4958
    }
4959
4960
    /**
4961
     * <p>Checks if an array of primitive ints is not empty and not {@code null}.
4962
     *
4963
     * @param array  the array to test
4964
     * @return {@code true} if the array is not empty and not {@code null}
4965
     * @since 2.5
4966
     */
4967
    public static boolean isNotEmpty(final int[] array) {
4968 14 1. isNotEmpty : negated conditional → NOT_SCHEDULED
2. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isNotEmpty : negated conditional → NOT_SCHEDULED
4. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isNotEmpty : negated conditional → NOT_SCHEDULED
6. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isNotEmpty : negated conditional → NOT_SCHEDULED
8. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. isNotEmpty : negated conditional → NOT_SCHEDULED
10. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. isNotEmpty : negated conditional → NOT_SCHEDULED
12. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. isNotEmpty : negated conditional → NOT_SCHEDULED
14. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return !isEmpty(array);
4969
    }
4970
4971
    /**
4972
     * <p>Checks if an array of primitive shorts is not empty and not {@code null}.
4973
     *
4974
     * @param array  the array to test
4975
     * @return {@code true} if the array is not empty and not {@code null}
4976
     * @since 2.5
4977
     */
4978
    public static boolean isNotEmpty(final short[] array) {
4979 14 1. isNotEmpty : negated conditional → NOT_SCHEDULED
2. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isNotEmpty : negated conditional → NOT_SCHEDULED
4. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isNotEmpty : negated conditional → NOT_SCHEDULED
6. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isNotEmpty : negated conditional → NOT_SCHEDULED
8. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. isNotEmpty : negated conditional → NOT_SCHEDULED
10. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. isNotEmpty : negated conditional → NOT_SCHEDULED
12. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. isNotEmpty : negated conditional → NOT_SCHEDULED
14. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return !isEmpty(array);
4980
    }
4981
4982
    /**
4983
     * <p>Checks if an array of primitive chars is not empty and not {@code null}.
4984
     *
4985
     * @param array  the array to test
4986
     * @return {@code true} if the array is not empty and not {@code null}
4987
     * @since 2.5
4988
     */
4989
    public static boolean isNotEmpty(final char[] array) {
4990 14 1. isNotEmpty : negated conditional → NOT_SCHEDULED
2. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isNotEmpty : negated conditional → NOT_SCHEDULED
4. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isNotEmpty : negated conditional → NOT_SCHEDULED
6. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isNotEmpty : negated conditional → NOT_SCHEDULED
8. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. isNotEmpty : negated conditional → NOT_SCHEDULED
10. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. isNotEmpty : negated conditional → NOT_SCHEDULED
12. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. isNotEmpty : negated conditional → NOT_SCHEDULED
14. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return !isEmpty(array);
4991
    }
4992
4993
    /**
4994
     * <p>Checks if an array of primitive bytes is not empty and not {@code null}.
4995
     *
4996
     * @param array  the array to test
4997
     * @return {@code true} if the array is not empty and not {@code null}
4998
     * @since 2.5
4999
     */
5000
    public static boolean isNotEmpty(final byte[] array) {
5001 14 1. isNotEmpty : negated conditional → NOT_SCHEDULED
2. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isNotEmpty : negated conditional → NOT_SCHEDULED
4. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isNotEmpty : negated conditional → NOT_SCHEDULED
6. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isNotEmpty : negated conditional → NOT_SCHEDULED
8. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. isNotEmpty : negated conditional → NOT_SCHEDULED
10. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. isNotEmpty : negated conditional → NOT_SCHEDULED
12. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. isNotEmpty : negated conditional → NOT_SCHEDULED
14. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return !isEmpty(array);
5002
    }
5003
5004
    /**
5005
     * <p>Checks if an array of primitive doubles is not empty and not {@code null}.
5006
     *
5007
     * @param array  the array to test
5008
     * @return {@code true} if the array is not empty and not {@code null}
5009
     * @since 2.5
5010
     */
5011
    public static boolean isNotEmpty(final double[] array) {
5012 14 1. isNotEmpty : negated conditional → NOT_SCHEDULED
2. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isNotEmpty : negated conditional → NOT_SCHEDULED
4. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isNotEmpty : negated conditional → NOT_SCHEDULED
6. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isNotEmpty : negated conditional → NOT_SCHEDULED
8. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. isNotEmpty : negated conditional → NOT_SCHEDULED
10. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. isNotEmpty : negated conditional → NOT_SCHEDULED
12. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. isNotEmpty : negated conditional → NOT_SCHEDULED
14. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return !isEmpty(array);
5013
    }
5014
5015
    /**
5016
     * <p>Checks if an array of primitive floats is not empty and not {@code null}.
5017
     *
5018
     * @param array  the array to test
5019
     * @return {@code true} if the array is not empty and not {@code null}
5020
     * @since 2.5
5021
     */
5022
    public static boolean isNotEmpty(final float[] array) {
5023 14 1. isNotEmpty : negated conditional → NOT_SCHEDULED
2. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isNotEmpty : negated conditional → NOT_SCHEDULED
4. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isNotEmpty : negated conditional → NOT_SCHEDULED
6. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isNotEmpty : negated conditional → NOT_SCHEDULED
8. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. isNotEmpty : negated conditional → NOT_SCHEDULED
10. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. isNotEmpty : negated conditional → NOT_SCHEDULED
12. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. isNotEmpty : negated conditional → NOT_SCHEDULED
14. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return !isEmpty(array);
5024
    }
5025
5026
    /**
5027
     * <p>Checks if an array of primitive booleans is not empty and not {@code null}.
5028
     *
5029
     * @param array  the array to test
5030
     * @return {@code true} if the array is not empty and not {@code null}
5031
     * @since 2.5
5032
     */
5033
    public static boolean isNotEmpty(final boolean[] array) {
5034 14 1. isNotEmpty : negated conditional → NOT_SCHEDULED
2. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isNotEmpty : negated conditional → NOT_SCHEDULED
4. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isNotEmpty : negated conditional → NOT_SCHEDULED
6. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isNotEmpty : negated conditional → NOT_SCHEDULED
8. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
9. isNotEmpty : negated conditional → NOT_SCHEDULED
10. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
11. isNotEmpty : negated conditional → NOT_SCHEDULED
12. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
13. isNotEmpty : negated conditional → NOT_SCHEDULED
14. isNotEmpty : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return !isEmpty(array);
5035
    }
5036
5037
    /**
5038
     * <p>Adds all the elements of the given arrays into a new array.
5039
     * <p>The new array contains all of the element of {@code array1} followed
5040
     * by all of the elements {@code array2}. When an array is returned, it is always
5041
     * a new array.
5042
     *
5043
     * <pre>
5044
     * ArrayUtils.addAll(null, null)     = null
5045
     * ArrayUtils.addAll(array1, null)   = cloned copy of array1
5046
     * ArrayUtils.addAll(null, array2)   = cloned copy of array2
5047
     * ArrayUtils.addAll([], [])         = []
5048
     * ArrayUtils.addAll([null], [null]) = [null, null]
5049
     * ArrayUtils.addAll(["a", "b", "c"], ["1", "2", "3"]) = ["a", "b", "c", "1", "2", "3"]
5050
     * </pre>
5051
     *
5052
     * @param <T> the component type of the array
5053
     * @param array1  the first array whose elements are added to the new array, may be {@code null}
5054
     * @param array2  the second array whose elements are added to the new array, may be {@code null}
5055
     * @return The new array, {@code null} if both arrays are {@code null}.
5056
     *      The type of the new array is the type of the first array,
5057
     *      unless the first array is null, in which case the type is the same as the second array.
5058
     * @since 2.1
5059
     * @throws IllegalArgumentException if the array types are incompatible
5060
     */
5061
    public static <T> T[] addAll(final T[] array1, final T... array2) {
5062 7 1. addAll : negated conditional → NOT_SCHEDULED
2. addAll : negated conditional → NOT_SCHEDULED
3. addAll : negated conditional → NOT_SCHEDULED
4. addAll : negated conditional → NOT_SCHEDULED
5. addAll : negated conditional → NOT_SCHEDULED
6. addAll : negated conditional → NOT_SCHEDULED
7. addAll : negated conditional → NOT_SCHEDULED
        if (array1 == null) {
5063 7 1. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array2);
5064 7 1. addAll : negated conditional → NOT_SCHEDULED
2. addAll : negated conditional → NOT_SCHEDULED
3. addAll : negated conditional → NOT_SCHEDULED
4. addAll : negated conditional → NOT_SCHEDULED
5. addAll : negated conditional → NOT_SCHEDULED
6. addAll : negated conditional → NOT_SCHEDULED
7. addAll : negated conditional → NOT_SCHEDULED
        } else if (array2 == null) {
5065 7 1. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array1);
5066
        }
5067
        final Class<?> type1 = array1.getClass().getComponentType();
5068
        @SuppressWarnings("unchecked") // OK, because array is of type T
5069
        final
5070 7 1. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
2. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
3. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
4. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
5. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
6. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
7. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
        T[] joinedArray = (T[]) Array.newInstance(type1, array1.length + array2.length);
5071 7 1. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
2. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
3. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
4. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
5. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
6. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
7. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
        System.arraycopy(array1, 0, joinedArray, 0, array1.length);
5072
        try {
5073 7 1. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
2. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
3. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
4. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
5. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
6. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
7. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
            System.arraycopy(array2, 0, joinedArray, array1.length, array2.length);
5074
        } catch (final ArrayStoreException ase) {
5075
            // Check if problem was due to incompatible types
5076
            /*
5077
             * We do this here, rather than before the copy because:
5078
             * - it would be a wasted check most of the time
5079
             * - safer, in case check turns out to be too strict
5080
             */
5081
            final Class<?> type2 = array2.getClass().getComponentType();
5082 7 1. addAll : negated conditional → NOT_SCHEDULED
2. addAll : negated conditional → NOT_SCHEDULED
3. addAll : negated conditional → NOT_SCHEDULED
4. addAll : negated conditional → NOT_SCHEDULED
5. addAll : negated conditional → NOT_SCHEDULED
6. addAll : negated conditional → NOT_SCHEDULED
7. addAll : negated conditional → NOT_SCHEDULED
            if (!type1.isAssignableFrom(type2)) {
5083
                throw new IllegalArgumentException("Cannot store " + type2.getName() + " in an array of "
5084
                        + type1.getName(), ase);
5085
            }
5086
            throw ase; // No, so rethrow original
5087
        }
5088 7 1. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return joinedArray;
5089
    }
5090
5091
    /**
5092
     * <p>Adds all the elements of the given arrays into a new array.
5093
     * <p>The new array contains all of the element of {@code array1} followed
5094
     * by all of the elements {@code array2}. When an array is returned, it is always
5095
     * a new array.
5096
     *
5097
     * <pre>
5098
     * ArrayUtils.addAll(array1, null)   = cloned copy of array1
5099
     * ArrayUtils.addAll(null, array2)   = cloned copy of array2
5100
     * ArrayUtils.addAll([], [])         = []
5101
     * </pre>
5102
     *
5103
     * @param array1  the first array whose elements are added to the new array.
5104
     * @param array2  the second array whose elements are added to the new array.
5105
     * @return The new boolean[] array.
5106
     * @since 2.1
5107
     */
5108
    public static boolean[] addAll(final boolean[] array1, final boolean... array2) {
5109 7 1. addAll : negated conditional → NOT_SCHEDULED
2. addAll : negated conditional → NOT_SCHEDULED
3. addAll : negated conditional → NOT_SCHEDULED
4. addAll : negated conditional → NOT_SCHEDULED
5. addAll : negated conditional → NOT_SCHEDULED
6. addAll : negated conditional → NOT_SCHEDULED
7. addAll : negated conditional → NOT_SCHEDULED
        if (array1 == null) {
5110 7 1. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array2);
5111 7 1. addAll : negated conditional → NOT_SCHEDULED
2. addAll : negated conditional → NOT_SCHEDULED
3. addAll : negated conditional → NOT_SCHEDULED
4. addAll : negated conditional → NOT_SCHEDULED
5. addAll : negated conditional → NOT_SCHEDULED
6. addAll : negated conditional → NOT_SCHEDULED
7. addAll : negated conditional → NOT_SCHEDULED
        } else if (array2 == null) {
5112 7 1. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array1);
5113
        }
5114 7 1. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
2. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
3. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
4. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
5. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
6. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
7. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
        final boolean[] joinedArray = new boolean[array1.length + array2.length];
5115 7 1. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
2. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
3. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
4. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
5. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
6. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
7. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
        System.arraycopy(array1, 0, joinedArray, 0, array1.length);
5116 7 1. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
2. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
3. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
4. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
5. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
6. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
7. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
        System.arraycopy(array2, 0, joinedArray, array1.length, array2.length);
5117 7 1. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return joinedArray;
5118
    }
5119
5120
    /**
5121
     * <p>Adds all the elements of the given arrays into a new array.
5122
     * <p>The new array contains all of the element of {@code array1} followed
5123
     * by all of the elements {@code array2}. When an array is returned, it is always
5124
     * a new array.
5125
     *
5126
     * <pre>
5127
     * ArrayUtils.addAll(array1, null)   = cloned copy of array1
5128
     * ArrayUtils.addAll(null, array2)   = cloned copy of array2
5129
     * ArrayUtils.addAll([], [])         = []
5130
     * </pre>
5131
     *
5132
     * @param array1  the first array whose elements are added to the new array.
5133
     * @param array2  the second array whose elements are added to the new array.
5134
     * @return The new char[] array.
5135
     * @since 2.1
5136
     */
5137
    public static char[] addAll(final char[] array1, final char... array2) {
5138 7 1. addAll : negated conditional → NOT_SCHEDULED
2. addAll : negated conditional → NOT_SCHEDULED
3. addAll : negated conditional → NOT_SCHEDULED
4. addAll : negated conditional → NOT_SCHEDULED
5. addAll : negated conditional → NOT_SCHEDULED
6. addAll : negated conditional → NOT_SCHEDULED
7. addAll : negated conditional → NOT_SCHEDULED
        if (array1 == null) {
5139 7 1. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array2);
5140 7 1. addAll : negated conditional → NOT_SCHEDULED
2. addAll : negated conditional → NOT_SCHEDULED
3. addAll : negated conditional → NOT_SCHEDULED
4. addAll : negated conditional → NOT_SCHEDULED
5. addAll : negated conditional → NOT_SCHEDULED
6. addAll : negated conditional → NOT_SCHEDULED
7. addAll : negated conditional → NOT_SCHEDULED
        } else if (array2 == null) {
5141 7 1. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array1);
5142
        }
5143 7 1. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
2. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
3. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
4. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
5. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
6. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
7. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
        final char[] joinedArray = new char[array1.length + array2.length];
5144 7 1. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
2. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
3. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
4. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
5. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
6. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
7. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
        System.arraycopy(array1, 0, joinedArray, 0, array1.length);
5145 7 1. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
2. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
3. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
4. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
5. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
6. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
7. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
        System.arraycopy(array2, 0, joinedArray, array1.length, array2.length);
5146 7 1. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return joinedArray;
5147
    }
5148
5149
    /**
5150
     * <p>Adds all the elements of the given arrays into a new array.
5151
     * <p>The new array contains all of the element of {@code array1} followed
5152
     * by all of the elements {@code array2}. When an array is returned, it is always
5153
     * a new array.
5154
     *
5155
     * <pre>
5156
     * ArrayUtils.addAll(array1, null)   = cloned copy of array1
5157
     * ArrayUtils.addAll(null, array2)   = cloned copy of array2
5158
     * ArrayUtils.addAll([], [])         = []
5159
     * </pre>
5160
     *
5161
     * @param array1  the first array whose elements are added to the new array.
5162
     * @param array2  the second array whose elements are added to the new array.
5163
     * @return The new byte[] array.
5164
     * @since 2.1
5165
     */
5166
    public static byte[] addAll(final byte[] array1, final byte... array2) {
5167 7 1. addAll : negated conditional → NOT_SCHEDULED
2. addAll : negated conditional → NOT_SCHEDULED
3. addAll : negated conditional → NOT_SCHEDULED
4. addAll : negated conditional → NOT_SCHEDULED
5. addAll : negated conditional → NOT_SCHEDULED
6. addAll : negated conditional → NOT_SCHEDULED
7. addAll : negated conditional → NOT_SCHEDULED
        if (array1 == null) {
5168 7 1. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array2);
5169 7 1. addAll : negated conditional → NOT_SCHEDULED
2. addAll : negated conditional → NOT_SCHEDULED
3. addAll : negated conditional → NOT_SCHEDULED
4. addAll : negated conditional → NOT_SCHEDULED
5. addAll : negated conditional → NOT_SCHEDULED
6. addAll : negated conditional → NOT_SCHEDULED
7. addAll : negated conditional → NOT_SCHEDULED
        } else if (array2 == null) {
5170 7 1. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array1);
5171
        }
5172 7 1. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
2. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
3. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
4. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
5. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
6. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
7. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
        final byte[] joinedArray = new byte[array1.length + array2.length];
5173 7 1. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
2. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
3. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
4. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
5. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
6. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
7. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
        System.arraycopy(array1, 0, joinedArray, 0, array1.length);
5174 7 1. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
2. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
3. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
4. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
5. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
6. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
7. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
        System.arraycopy(array2, 0, joinedArray, array1.length, array2.length);
5175 7 1. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return joinedArray;
5176
    }
5177
5178
    /**
5179
     * <p>Adds all the elements of the given arrays into a new array.
5180
     * <p>The new array contains all of the element of {@code array1} followed
5181
     * by all of the elements {@code array2}. When an array is returned, it is always
5182
     * a new array.
5183
     *
5184
     * <pre>
5185
     * ArrayUtils.addAll(array1, null)   = cloned copy of array1
5186
     * ArrayUtils.addAll(null, array2)   = cloned copy of array2
5187
     * ArrayUtils.addAll([], [])         = []
5188
     * </pre>
5189
     *
5190
     * @param array1  the first array whose elements are added to the new array.
5191
     * @param array2  the second array whose elements are added to the new array.
5192
     * @return The new short[] array.
5193
     * @since 2.1
5194
     */
5195
    public static short[] addAll(final short[] array1, final short... array2) {
5196 7 1. addAll : negated conditional → NOT_SCHEDULED
2. addAll : negated conditional → NOT_SCHEDULED
3. addAll : negated conditional → NOT_SCHEDULED
4. addAll : negated conditional → NOT_SCHEDULED
5. addAll : negated conditional → NOT_SCHEDULED
6. addAll : negated conditional → NOT_SCHEDULED
7. addAll : negated conditional → NOT_SCHEDULED
        if (array1 == null) {
5197 7 1. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array2);
5198 7 1. addAll : negated conditional → NOT_SCHEDULED
2. addAll : negated conditional → NOT_SCHEDULED
3. addAll : negated conditional → NOT_SCHEDULED
4. addAll : negated conditional → NOT_SCHEDULED
5. addAll : negated conditional → NOT_SCHEDULED
6. addAll : negated conditional → NOT_SCHEDULED
7. addAll : negated conditional → NOT_SCHEDULED
        } else if (array2 == null) {
5199 7 1. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array1);
5200
        }
5201 7 1. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
2. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
3. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
4. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
5. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
6. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
7. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
        final short[] joinedArray = new short[array1.length + array2.length];
5202 7 1. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
2. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
3. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
4. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
5. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
6. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
7. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
        System.arraycopy(array1, 0, joinedArray, 0, array1.length);
5203 7 1. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
2. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
3. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
4. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
5. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
6. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
7. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
        System.arraycopy(array2, 0, joinedArray, array1.length, array2.length);
5204 7 1. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return joinedArray;
5205
    }
5206
5207
    /**
5208
     * <p>Adds all the elements of the given arrays into a new array.
5209
     * <p>The new array contains all of the element of {@code array1} followed
5210
     * by all of the elements {@code array2}. When an array is returned, it is always
5211
     * a new array.
5212
     *
5213
     * <pre>
5214
     * ArrayUtils.addAll(array1, null)   = cloned copy of array1
5215
     * ArrayUtils.addAll(null, array2)   = cloned copy of array2
5216
     * ArrayUtils.addAll([], [])         = []
5217
     * </pre>
5218
     *
5219
     * @param array1  the first array whose elements are added to the new array.
5220
     * @param array2  the second array whose elements are added to the new array.
5221
     * @return The new int[] array.
5222
     * @since 2.1
5223
     */
5224
    public static int[] addAll(final int[] array1, final int... array2) {
5225 7 1. addAll : negated conditional → NOT_SCHEDULED
2. addAll : negated conditional → NOT_SCHEDULED
3. addAll : negated conditional → NOT_SCHEDULED
4. addAll : negated conditional → NOT_SCHEDULED
5. addAll : negated conditional → NOT_SCHEDULED
6. addAll : negated conditional → NOT_SCHEDULED
7. addAll : negated conditional → NOT_SCHEDULED
        if (array1 == null) {
5226 7 1. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array2);
5227 7 1. addAll : negated conditional → NOT_SCHEDULED
2. addAll : negated conditional → NOT_SCHEDULED
3. addAll : negated conditional → NOT_SCHEDULED
4. addAll : negated conditional → NOT_SCHEDULED
5. addAll : negated conditional → NOT_SCHEDULED
6. addAll : negated conditional → NOT_SCHEDULED
7. addAll : negated conditional → NOT_SCHEDULED
        } else if (array2 == null) {
5228 7 1. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array1);
5229
        }
5230 7 1. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
2. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
3. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
4. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
5. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
6. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
7. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
        final int[] joinedArray = new int[array1.length + array2.length];
5231 7 1. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
2. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
3. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
4. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
5. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
6. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
7. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
        System.arraycopy(array1, 0, joinedArray, 0, array1.length);
5232 7 1. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
2. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
3. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
4. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
5. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
6. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
7. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
        System.arraycopy(array2, 0, joinedArray, array1.length, array2.length);
5233 7 1. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return joinedArray;
5234
    }
5235
5236
    /**
5237
     * <p>Adds all the elements of the given arrays into a new array.
5238
     * <p>The new array contains all of the element of {@code array1} followed
5239
     * by all of the elements {@code array2}. When an array is returned, it is always
5240
     * a new array.
5241
     *
5242
     * <pre>
5243
     * ArrayUtils.addAll(array1, null)   = cloned copy of array1
5244
     * ArrayUtils.addAll(null, array2)   = cloned copy of array2
5245
     * ArrayUtils.addAll([], [])         = []
5246
     * </pre>
5247
     *
5248
     * @param array1  the first array whose elements are added to the new array.
5249
     * @param array2  the second array whose elements are added to the new array.
5250
     * @return The new long[] array.
5251
     * @since 2.1
5252
     */
5253
    public static long[] addAll(final long[] array1, final long... array2) {
5254 7 1. addAll : negated conditional → NOT_SCHEDULED
2. addAll : negated conditional → NOT_SCHEDULED
3. addAll : negated conditional → NOT_SCHEDULED
4. addAll : negated conditional → NOT_SCHEDULED
5. addAll : negated conditional → NOT_SCHEDULED
6. addAll : negated conditional → NOT_SCHEDULED
7. addAll : negated conditional → NOT_SCHEDULED
        if (array1 == null) {
5255 7 1. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array2);
5256 7 1. addAll : negated conditional → NOT_SCHEDULED
2. addAll : negated conditional → NOT_SCHEDULED
3. addAll : negated conditional → NOT_SCHEDULED
4. addAll : negated conditional → NOT_SCHEDULED
5. addAll : negated conditional → NOT_SCHEDULED
6. addAll : negated conditional → NOT_SCHEDULED
7. addAll : negated conditional → NOT_SCHEDULED
        } else if (array2 == null) {
5257 7 1. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array1);
5258
        }
5259 7 1. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
2. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
3. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
4. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
5. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
6. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
7. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
        final long[] joinedArray = new long[array1.length + array2.length];
5260 7 1. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
2. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
3. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
4. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
5. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
6. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
7. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
        System.arraycopy(array1, 0, joinedArray, 0, array1.length);
5261 7 1. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
2. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
3. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
4. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
5. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
6. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
7. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
        System.arraycopy(array2, 0, joinedArray, array1.length, array2.length);
5262 7 1. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return joinedArray;
5263
    }
5264
5265
    /**
5266
     * <p>Adds all the elements of the given arrays into a new array.
5267
     * <p>The new array contains all of the element of {@code array1} followed
5268
     * by all of the elements {@code array2}. When an array is returned, it is always
5269
     * a new array.
5270
     *
5271
     * <pre>
5272
     * ArrayUtils.addAll(array1, null)   = cloned copy of array1
5273
     * ArrayUtils.addAll(null, array2)   = cloned copy of array2
5274
     * ArrayUtils.addAll([], [])         = []
5275
     * </pre>
5276
     *
5277
     * @param array1  the first array whose elements are added to the new array.
5278
     * @param array2  the second array whose elements are added to the new array.
5279
     * @return The new float[] array.
5280
     * @since 2.1
5281
     */
5282
    public static float[] addAll(final float[] array1, final float... array2) {
5283 7 1. addAll : negated conditional → NOT_SCHEDULED
2. addAll : negated conditional → NOT_SCHEDULED
3. addAll : negated conditional → NOT_SCHEDULED
4. addAll : negated conditional → NOT_SCHEDULED
5. addAll : negated conditional → NOT_SCHEDULED
6. addAll : negated conditional → NOT_SCHEDULED
7. addAll : negated conditional → NOT_SCHEDULED
        if (array1 == null) {
5284 7 1. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array2);
5285 7 1. addAll : negated conditional → NOT_SCHEDULED
2. addAll : negated conditional → NOT_SCHEDULED
3. addAll : negated conditional → NOT_SCHEDULED
4. addAll : negated conditional → NOT_SCHEDULED
5. addAll : negated conditional → NOT_SCHEDULED
6. addAll : negated conditional → NOT_SCHEDULED
7. addAll : negated conditional → NOT_SCHEDULED
        } else if (array2 == null) {
5286 7 1. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array1);
5287
        }
5288 7 1. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
2. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
3. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
4. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
5. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
6. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
7. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
        final float[] joinedArray = new float[array1.length + array2.length];
5289 7 1. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
2. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
3. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
4. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
5. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
6. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
7. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
        System.arraycopy(array1, 0, joinedArray, 0, array1.length);
5290 7 1. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
2. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
3. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
4. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
5. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
6. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
7. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
        System.arraycopy(array2, 0, joinedArray, array1.length, array2.length);
5291 7 1. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return joinedArray;
5292
    }
5293
5294
    /**
5295
     * <p>Adds all the elements of the given arrays into a new array.
5296
     * <p>The new array contains all of the element of {@code array1} followed
5297
     * by all of the elements {@code array2}. When an array is returned, it is always
5298
     * a new array.
5299
     *
5300
     * <pre>
5301
     * ArrayUtils.addAll(array1, null)   = cloned copy of array1
5302
     * ArrayUtils.addAll(null, array2)   = cloned copy of array2
5303
     * ArrayUtils.addAll([], [])         = []
5304
     * </pre>
5305
     *
5306
     * @param array1  the first array whose elements are added to the new array.
5307
     * @param array2  the second array whose elements are added to the new array.
5308
     * @return The new double[] array.
5309
     * @since 2.1
5310
     */
5311
    public static double[] addAll(final double[] array1, final double... array2) {
5312 7 1. addAll : negated conditional → NOT_SCHEDULED
2. addAll : negated conditional → NOT_SCHEDULED
3. addAll : negated conditional → NOT_SCHEDULED
4. addAll : negated conditional → NOT_SCHEDULED
5. addAll : negated conditional → NOT_SCHEDULED
6. addAll : negated conditional → NOT_SCHEDULED
7. addAll : negated conditional → NOT_SCHEDULED
        if (array1 == null) {
5313 7 1. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array2);
5314 7 1. addAll : negated conditional → NOT_SCHEDULED
2. addAll : negated conditional → NOT_SCHEDULED
3. addAll : negated conditional → NOT_SCHEDULED
4. addAll : negated conditional → NOT_SCHEDULED
5. addAll : negated conditional → NOT_SCHEDULED
6. addAll : negated conditional → NOT_SCHEDULED
7. addAll : negated conditional → NOT_SCHEDULED
        } else if (array2 == null) {
5315 7 1. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array1);
5316
        }
5317 7 1. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
2. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
3. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
4. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
5. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
6. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
7. addAll : Replaced integer addition with subtraction → NOT_SCHEDULED
        final double[] joinedArray = new double[array1.length + array2.length];
5318 7 1. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
2. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
3. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
4. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
5. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
6. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
7. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
        System.arraycopy(array1, 0, joinedArray, 0, array1.length);
5319 7 1. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
2. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
3. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
4. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
5. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
6. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
7. addAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
        System.arraycopy(array2, 0, joinedArray, array1.length, array2.length);
5320 7 1. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. addAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return joinedArray;
5321
    }
5322
5323
    /**
5324
     * <p>Copies the given array and adds the given element at the end of the new array.
5325
     *
5326
     * <p>The new array contains the same elements of the input
5327
     * array plus the given element in the last position. The component type of
5328
     * the new array is the same as that of the input array.
5329
     *
5330
     * <p>If the input array is {@code null}, a new one element array is returned
5331
     *  whose component type is the same as the element, unless the element itself is null,
5332
     *  in which case the return type is Object[]
5333
     *
5334
     * <pre>
5335
     * ArrayUtils.add(null, null)      = [null]
5336
     * ArrayUtils.add(null, "a")       = ["a"]
5337
     * ArrayUtils.add(["a"], null)     = ["a", null]
5338
     * ArrayUtils.add(["a"], "b")      = ["a", "b"]
5339
     * ArrayUtils.add(["a", "b"], "c") = ["a", "b", "c"]
5340
     * </pre>
5341
     *
5342
     * @param <T> the component type of the array
5343
     * @param array  the array to "add" the element to, may be {@code null}
5344
     * @param element  the object to add, may be {@code null}
5345
     * @return A new array containing the existing elements plus the new element
5346
     * The returned array type will be that of the input array (unless null),
5347
     * in which case it will have the same type as the element.
5348
     * If both are null, an IllegalArgumentException is thrown
5349
     * @since 2.1
5350
     * @throws IllegalArgumentException if both arguments are null
5351
     */
5352
    public static <T> T[] add(final T[] array, final T element) {
5353
        Class<?> type;
5354 7 1. add : negated conditional → NOT_SCHEDULED
2. add : negated conditional → NOT_SCHEDULED
3. add : negated conditional → NOT_SCHEDULED
4. add : negated conditional → NOT_SCHEDULED
5. add : negated conditional → NOT_SCHEDULED
6. add : negated conditional → NOT_SCHEDULED
7. add : negated conditional → NOT_SCHEDULED
        if (array != null) {
5355
            type = array.getClass().getComponentType();
5356 7 1. add : negated conditional → NOT_SCHEDULED
2. add : negated conditional → NOT_SCHEDULED
3. add : negated conditional → NOT_SCHEDULED
4. add : negated conditional → NOT_SCHEDULED
5. add : negated conditional → NOT_SCHEDULED
6. add : negated conditional → NOT_SCHEDULED
7. add : negated conditional → NOT_SCHEDULED
        } else if (element != null) {
5357
            type = element.getClass();
5358
        } else {
5359
            throw new IllegalArgumentException("Arguments cannot both be null");
5360
        }
5361
        @SuppressWarnings("unchecked") // type must be T
5362
        final
5363
        T[] newArray = (T[]) copyArrayGrow1(array, type);
5364 7 1. add : Replaced integer subtraction with addition → NOT_SCHEDULED
2. add : Replaced integer subtraction with addition → NOT_SCHEDULED
3. add : Replaced integer subtraction with addition → NOT_SCHEDULED
4. add : Replaced integer subtraction with addition → NOT_SCHEDULED
5. add : Replaced integer subtraction with addition → NOT_SCHEDULED
6. add : Replaced integer subtraction with addition → NOT_SCHEDULED
7. add : Replaced integer subtraction with addition → NOT_SCHEDULED
        newArray[newArray.length - 1] = element;
5365 7 1. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return newArray;
5366
    }
5367
5368
    /**
5369
     * <p>Copies the given array and adds the given element at the end of the new array.
5370
     *
5371
     * <p>The new array contains the same elements of the input
5372
     * array plus the given element in the last position. The component type of
5373
     * the new array is the same as that of the input array.
5374
     *
5375
     * <p>If the input array is {@code null}, a new one element array is returned
5376
     *  whose component type is the same as the element.
5377
     *
5378
     * <pre>
5379
     * ArrayUtils.add(null, true)          = [true]
5380
     * ArrayUtils.add([true], false)       = [true, false]
5381
     * ArrayUtils.add([true, false], true) = [true, false, true]
5382
     * </pre>
5383
     *
5384
     * @param array  the array to copy and add the element to, may be {@code null}
5385
     * @param element  the object to add at the last index of the new array
5386
     * @return A new array containing the existing elements plus the new element
5387
     * @since 2.1
5388
     */
5389
    public static boolean[] add(final boolean[] array, final boolean element) {
5390
        final boolean[] newArray = (boolean[])copyArrayGrow1(array, Boolean.TYPE);
5391 7 1. add : Replaced integer subtraction with addition → NOT_SCHEDULED
2. add : Replaced integer subtraction with addition → NOT_SCHEDULED
3. add : Replaced integer subtraction with addition → NOT_SCHEDULED
4. add : Replaced integer subtraction with addition → NOT_SCHEDULED
5. add : Replaced integer subtraction with addition → NOT_SCHEDULED
6. add : Replaced integer subtraction with addition → NOT_SCHEDULED
7. add : Replaced integer subtraction with addition → NOT_SCHEDULED
        newArray[newArray.length - 1] = element;
5392 7 1. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return newArray;
5393
    }
5394
5395
    /**
5396
     * <p>Copies the given array and adds the given element at the end of the new array.
5397
     *
5398
     * <p>The new array contains the same elements of the input
5399
     * array plus the given element in the last position. The component type of
5400
     * the new array is the same as that of the input array.
5401
     *
5402
     * <p>If the input array is {@code null}, a new one element array is returned
5403
     *  whose component type is the same as the element.
5404
     *
5405
     * <pre>
5406
     * ArrayUtils.add(null, 0)   = [0]
5407
     * ArrayUtils.add([1], 0)    = [1, 0]
5408
     * ArrayUtils.add([1, 0], 1) = [1, 0, 1]
5409
     * </pre>
5410
     *
5411
     * @param array  the array to copy and add the element to, may be {@code null}
5412
     * @param element  the object to add at the last index of the new array
5413
     * @return A new array containing the existing elements plus the new element
5414
     * @since 2.1
5415
     */
5416
    public static byte[] add(final byte[] array, final byte element) {
5417
        final byte[] newArray = (byte[])copyArrayGrow1(array, Byte.TYPE);
5418 7 1. add : Replaced integer subtraction with addition → NOT_SCHEDULED
2. add : Replaced integer subtraction with addition → NOT_SCHEDULED
3. add : Replaced integer subtraction with addition → NOT_SCHEDULED
4. add : Replaced integer subtraction with addition → NOT_SCHEDULED
5. add : Replaced integer subtraction with addition → NOT_SCHEDULED
6. add : Replaced integer subtraction with addition → NOT_SCHEDULED
7. add : Replaced integer subtraction with addition → NOT_SCHEDULED
        newArray[newArray.length - 1] = element;
5419 7 1. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return newArray;
5420
    }
5421
5422
    /**
5423
     * <p>Copies the given array and adds the given element at the end of the new array.
5424
     *
5425
     * <p>The new array contains the same elements of the input
5426
     * array plus the given element in the last position. The component type of
5427
     * the new array is the same as that of the input array.
5428
     *
5429
     * <p>If the input array is {@code null}, a new one element array is returned
5430
     *  whose component type is the same as the element.
5431
     *
5432
     * <pre>
5433
     * ArrayUtils.add(null, '0')       = ['0']
5434
     * ArrayUtils.add(['1'], '0')      = ['1', '0']
5435
     * ArrayUtils.add(['1', '0'], '1') = ['1', '0', '1']
5436
     * </pre>
5437
     *
5438
     * @param array  the array to copy and add the element to, may be {@code null}
5439
     * @param element  the object to add at the last index of the new array
5440
     * @return A new array containing the existing elements plus the new element
5441
     * @since 2.1
5442
     */
5443
    public static char[] add(final char[] array, final char element) {
5444
        final char[] newArray = (char[])copyArrayGrow1(array, Character.TYPE);
5445 7 1. add : Replaced integer subtraction with addition → NOT_SCHEDULED
2. add : Replaced integer subtraction with addition → NOT_SCHEDULED
3. add : Replaced integer subtraction with addition → NOT_SCHEDULED
4. add : Replaced integer subtraction with addition → NOT_SCHEDULED
5. add : Replaced integer subtraction with addition → NOT_SCHEDULED
6. add : Replaced integer subtraction with addition → NOT_SCHEDULED
7. add : Replaced integer subtraction with addition → NOT_SCHEDULED
        newArray[newArray.length - 1] = element;
5446 7 1. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return newArray;
5447
    }
5448
5449
    /**
5450
     * <p>Copies the given array and adds the given element at the end of the new array.
5451
     *
5452
     * <p>The new array contains the same elements of the input
5453
     * array plus the given element in the last position. The component type of
5454
     * the new array is the same as that of the input array.
5455
     *
5456
     * <p>If the input array is {@code null}, a new one element array is returned
5457
     *  whose component type is the same as the element.
5458
     *
5459
     * <pre>
5460
     * ArrayUtils.add(null, 0)   = [0]
5461
     * ArrayUtils.add([1], 0)    = [1, 0]
5462
     * ArrayUtils.add([1, 0], 1) = [1, 0, 1]
5463
     * </pre>
5464
     *
5465
     * @param array  the array to copy and add the element to, may be {@code null}
5466
     * @param element  the object to add at the last index of the new array
5467
     * @return A new array containing the existing elements plus the new element
5468
     * @since 2.1
5469
     */
5470
    public static double[] add(final double[] array, final double element) {
5471
        final double[] newArray = (double[])copyArrayGrow1(array, Double.TYPE);
5472 7 1. add : Replaced integer subtraction with addition → NOT_SCHEDULED
2. add : Replaced integer subtraction with addition → NOT_SCHEDULED
3. add : Replaced integer subtraction with addition → NOT_SCHEDULED
4. add : Replaced integer subtraction with addition → NOT_SCHEDULED
5. add : Replaced integer subtraction with addition → NOT_SCHEDULED
6. add : Replaced integer subtraction with addition → NOT_SCHEDULED
7. add : Replaced integer subtraction with addition → NOT_SCHEDULED
        newArray[newArray.length - 1] = element;
5473 7 1. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return newArray;
5474
    }
5475
5476
    /**
5477
     * <p>Copies the given array and adds the given element at the end of the new array.
5478
     *
5479
     * <p>The new array contains the same elements of the input
5480
     * array plus the given element in the last position. The component type of
5481
     * the new array is the same as that of the input array.
5482
     *
5483
     * <p>If the input array is {@code null}, a new one element array is returned
5484
     *  whose component type is the same as the element.
5485
     *
5486
     * <pre>
5487
     * ArrayUtils.add(null, 0)   = [0]
5488
     * ArrayUtils.add([1], 0)    = [1, 0]
5489
     * ArrayUtils.add([1, 0], 1) = [1, 0, 1]
5490
     * </pre>
5491
     *
5492
     * @param array  the array to copy and add the element to, may be {@code null}
5493
     * @param element  the object to add at the last index of the new array
5494
     * @return A new array containing the existing elements plus the new element
5495
     * @since 2.1
5496
     */
5497
    public static float[] add(final float[] array, final float element) {
5498
        final float[] newArray = (float[])copyArrayGrow1(array, Float.TYPE);
5499 7 1. add : Replaced integer subtraction with addition → NOT_SCHEDULED
2. add : Replaced integer subtraction with addition → NOT_SCHEDULED
3. add : Replaced integer subtraction with addition → NOT_SCHEDULED
4. add : Replaced integer subtraction with addition → NOT_SCHEDULED
5. add : Replaced integer subtraction with addition → NOT_SCHEDULED
6. add : Replaced integer subtraction with addition → NOT_SCHEDULED
7. add : Replaced integer subtraction with addition → NOT_SCHEDULED
        newArray[newArray.length - 1] = element;
5500 7 1. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return newArray;
5501
    }
5502
5503
    /**
5504
     * <p>Copies the given array and adds the given element at the end of the new array.
5505
     *
5506
     * <p>The new array contains the same elements of the input
5507
     * array plus the given element in the last position. The component type of
5508
     * the new array is the same as that of the input array.
5509
     *
5510
     * <p>If the input array is {@code null}, a new one element array is returned
5511
     *  whose component type is the same as the element.
5512
     *
5513
     * <pre>
5514
     * ArrayUtils.add(null, 0)   = [0]
5515
     * ArrayUtils.add([1], 0)    = [1, 0]
5516
     * ArrayUtils.add([1, 0], 1) = [1, 0, 1]
5517
     * </pre>
5518
     *
5519
     * @param array  the array to copy and add the element to, may be {@code null}
5520
     * @param element  the object to add at the last index of the new array
5521
     * @return A new array containing the existing elements plus the new element
5522
     * @since 2.1
5523
     */
5524
    public static int[] add(final int[] array, final int element) {
5525
        final int[] newArray = (int[])copyArrayGrow1(array, Integer.TYPE);
5526 7 1. add : Replaced integer subtraction with addition → NOT_SCHEDULED
2. add : Replaced integer subtraction with addition → NOT_SCHEDULED
3. add : Replaced integer subtraction with addition → NOT_SCHEDULED
4. add : Replaced integer subtraction with addition → NOT_SCHEDULED
5. add : Replaced integer subtraction with addition → NOT_SCHEDULED
6. add : Replaced integer subtraction with addition → NOT_SCHEDULED
7. add : Replaced integer subtraction with addition → NOT_SCHEDULED
        newArray[newArray.length - 1] = element;
5527 7 1. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → KILLED
3. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → KILLED
4. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → KILLED
5. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → KILLED
6. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → KILLED
7. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → KILLED
        return newArray;
5528
    }
5529
5530
    /**
5531
     * <p>Copies the given array and adds the given element at the end of the new array.
5532
     *
5533
     * <p>The new array contains the same elements of the input
5534
     * array plus the given element in the last position. The component type of
5535
     * the new array is the same as that of the input array.
5536
     *
5537
     * <p>If the input array is {@code null}, a new one element array is returned
5538
     *  whose component type is the same as the element.
5539
     *
5540
     * <pre>
5541
     * ArrayUtils.add(null, 0)   = [0]
5542
     * ArrayUtils.add([1], 0)    = [1, 0]
5543
     * ArrayUtils.add([1, 0], 1) = [1, 0, 1]
5544
     * </pre>
5545
     *
5546
     * @param array  the array to copy and add the element to, may be {@code null}
5547
     * @param element  the object to add at the last index of the new array
5548
     * @return A new array containing the existing elements plus the new element
5549
     * @since 2.1
5550
     */
5551
    public static long[] add(final long[] array, final long element) {
5552
        final long[] newArray = (long[])copyArrayGrow1(array, Long.TYPE);
5553 7 1. add : Replaced integer subtraction with addition → NOT_SCHEDULED
2. add : Replaced integer subtraction with addition → NOT_SCHEDULED
3. add : Replaced integer subtraction with addition → NOT_SCHEDULED
4. add : Replaced integer subtraction with addition → NOT_SCHEDULED
5. add : Replaced integer subtraction with addition → NOT_SCHEDULED
6. add : Replaced integer subtraction with addition → NOT_SCHEDULED
7. add : Replaced integer subtraction with addition → NOT_SCHEDULED
        newArray[newArray.length - 1] = element;
5554 7 1. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return newArray;
5555
    }
5556
5557
    /**
5558
     * <p>Copies the given array and adds the given element at the end of the new array.
5559
     *
5560
     * <p>The new array contains the same elements of the input
5561
     * array plus the given element in the last position. The component type of
5562
     * the new array is the same as that of the input array.
5563
     *
5564
     * <p>If the input array is {@code null}, a new one element array is returned
5565
     *  whose component type is the same as the element.
5566
     *
5567
     * <pre>
5568
     * ArrayUtils.add(null, 0)   = [0]
5569
     * ArrayUtils.add([1], 0)    = [1, 0]
5570
     * ArrayUtils.add([1, 0], 1) = [1, 0, 1]
5571
     * </pre>
5572
     *
5573
     * @param array  the array to copy and add the element to, may be {@code null}
5574
     * @param element  the object to add at the last index of the new array
5575
     * @return A new array containing the existing elements plus the new element
5576
     * @since 2.1
5577
     */
5578
    public static short[] add(final short[] array, final short element) {
5579
        final short[] newArray = (short[]) copyArrayGrow1(array, Short.TYPE);
5580 7 1. add : Replaced integer subtraction with addition → NOT_SCHEDULED
2. add : Replaced integer subtraction with addition → NOT_SCHEDULED
3. add : Replaced integer subtraction with addition → NOT_SCHEDULED
4. add : Replaced integer subtraction with addition → NOT_SCHEDULED
5. add : Replaced integer subtraction with addition → NOT_SCHEDULED
6. add : Replaced integer subtraction with addition → NOT_SCHEDULED
7. add : Replaced integer subtraction with addition → NOT_SCHEDULED
        newArray[newArray.length - 1] = element;
5581 7 1. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return newArray;
5582
    }
5583
5584
    /**
5585
     * Returns a copy of the given array of size 1 greater than the argument.
5586
     * The last value of the array is left to the default value.
5587
     *
5588
     * @param array The array to copy, must not be {@code null}.
5589
     * @param newArrayComponentType If {@code array} is {@code null}, create a
5590
     * size 1 array of this type.
5591
     * @return A new copy of the array of size 1 greater than the input.
5592
     */
5593
    private static Object copyArrayGrow1(final Object array, final Class<?> newArrayComponentType) {
5594 7 1. copyArrayGrow1 : negated conditional → NOT_SCHEDULED
2. copyArrayGrow1 : negated conditional → NOT_SCHEDULED
3. copyArrayGrow1 : negated conditional → NOT_SCHEDULED
4. copyArrayGrow1 : negated conditional → NOT_SCHEDULED
5. copyArrayGrow1 : negated conditional → NOT_SCHEDULED
6. copyArrayGrow1 : negated conditional → NOT_SCHEDULED
7. copyArrayGrow1 : negated conditional → NOT_SCHEDULED
        if (array != null) {
5595
            final int arrayLength = Array.getLength(array);
5596 7 1. copyArrayGrow1 : Replaced integer addition with subtraction → NOT_SCHEDULED
2. copyArrayGrow1 : Replaced integer addition with subtraction → NOT_SCHEDULED
3. copyArrayGrow1 : Replaced integer addition with subtraction → NOT_SCHEDULED
4. copyArrayGrow1 : Replaced integer addition with subtraction → NOT_SCHEDULED
5. copyArrayGrow1 : Replaced integer addition with subtraction → NOT_SCHEDULED
6. copyArrayGrow1 : Replaced integer addition with subtraction → NOT_SCHEDULED
7. copyArrayGrow1 : Replaced integer addition with subtraction → NOT_SCHEDULED
            final Object newArray = Array.newInstance(array.getClass().getComponentType(), arrayLength + 1);
5597 7 1. copyArrayGrow1 : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
2. copyArrayGrow1 : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
3. copyArrayGrow1 : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
4. copyArrayGrow1 : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
5. copyArrayGrow1 : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
6. copyArrayGrow1 : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
7. copyArrayGrow1 : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
            System.arraycopy(array, 0, newArray, 0, arrayLength);
5598 7 1. copyArrayGrow1 : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::copyArrayGrow1 to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. copyArrayGrow1 : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::copyArrayGrow1 to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. copyArrayGrow1 : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::copyArrayGrow1 to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. copyArrayGrow1 : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::copyArrayGrow1 to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. copyArrayGrow1 : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::copyArrayGrow1 to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. copyArrayGrow1 : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::copyArrayGrow1 to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. copyArrayGrow1 : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::copyArrayGrow1 to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return newArray;
5599
        }
5600 7 1. copyArrayGrow1 : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::copyArrayGrow1 to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. copyArrayGrow1 : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::copyArrayGrow1 to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. copyArrayGrow1 : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::copyArrayGrow1 to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. copyArrayGrow1 : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::copyArrayGrow1 to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. copyArrayGrow1 : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::copyArrayGrow1 to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. copyArrayGrow1 : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::copyArrayGrow1 to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. copyArrayGrow1 : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::copyArrayGrow1 to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return Array.newInstance(newArrayComponentType, 1);
5601
    }
5602
5603
    /**
5604
     * <p>Inserts the specified element at the specified position in the array.
5605
     * Shifts the element currently at that position (if any) and any subsequent
5606
     * elements to the right (adds one to their indices).
5607
     *
5608
     * <p>This method returns a new array with the same elements of the input
5609
     * array plus the given element on the specified position. The component
5610
     * type of the returned array is always the same as that of the input
5611
     * array.
5612
     *
5613
     * <p>If the input array is {@code null}, a new one element array is returned
5614
     *  whose component type is the same as the element.
5615
     *
5616
     * <pre>
5617
     * ArrayUtils.add(null, 0, null)      = [null]
5618
     * ArrayUtils.add(null, 0, "a")       = ["a"]
5619
     * ArrayUtils.add(["a"], 1, null)     = ["a", null]
5620
     * ArrayUtils.add(["a"], 1, "b")      = ["a", "b"]
5621
     * ArrayUtils.add(["a", "b"], 3, "c") = ["a", "b", "c"]
5622
     * </pre>
5623
     *
5624
     * @param <T> the component type of the array
5625
     * @param array  the array to add the element to, may be {@code null}
5626
     * @param index  the position of the new object
5627
     * @param element  the object to add
5628
     * @return A new array containing the existing elements and the new element
5629
     * @throws IndexOutOfBoundsException if the index is out of range (index &lt; 0 || index &gt; array.length).
5630
     * @throws IllegalArgumentException if both array and element are null
5631
     */
5632
    public static <T> T[] add(final T[] array, final int index, final T element) {
5633
        Class<?> clss = null;
5634 7 1. add : negated conditional → NOT_SCHEDULED
2. add : negated conditional → NOT_SCHEDULED
3. add : negated conditional → NOT_SCHEDULED
4. add : negated conditional → NOT_SCHEDULED
5. add : negated conditional → NOT_SCHEDULED
6. add : negated conditional → NOT_SCHEDULED
7. add : negated conditional → NOT_SCHEDULED
        if (array != null) {
5635
            clss = array.getClass().getComponentType();
5636 7 1. add : negated conditional → NOT_SCHEDULED
2. add : negated conditional → NOT_SCHEDULED
3. add : negated conditional → NOT_SCHEDULED
4. add : negated conditional → NOT_SCHEDULED
5. add : negated conditional → NOT_SCHEDULED
6. add : negated conditional → NOT_SCHEDULED
7. add : negated conditional → NOT_SCHEDULED
        } else if (element != null) {
5637
            clss = element.getClass();
5638
        } else {
5639
            throw new IllegalArgumentException("Array and element cannot both be null");
5640
        }
5641
        @SuppressWarnings("unchecked") // the add method creates an array of type clss, which is type T
5642
        final T[] newArray = (T[]) add(array, index, element, clss);
5643 7 1. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return newArray;
5644
    }
5645
5646
    /**
5647
     * <p>Inserts the specified element at the specified position in the array.
5648
     * Shifts the element currently at that position (if any) and any subsequent
5649
     * elements to the right (adds one to their indices).
5650
     *
5651
     * <p>This method returns a new array with the same elements of the input
5652
     * array plus the given element on the specified position. The component
5653
     * type of the returned array is always the same as that of the input
5654
     * array.
5655
     *
5656
     * <p>If the input array is {@code null}, a new one element array is returned
5657
     *  whose component type is the same as the element.
5658
     *
5659
     * <pre>
5660
     * ArrayUtils.add(null, 0, true)          = [true]
5661
     * ArrayUtils.add([true], 0, false)       = [false, true]
5662
     * ArrayUtils.add([false], 1, true)       = [false, true]
5663
     * ArrayUtils.add([true, false], 1, true) = [true, true, false]
5664
     * </pre>
5665
     *
5666
     * @param array  the array to add the element to, may be {@code null}
5667
     * @param index  the position of the new object
5668
     * @param element  the object to add
5669
     * @return A new array containing the existing elements and the new element
5670
     * @throws IndexOutOfBoundsException if the index is out of range (index &lt; 0 || index &gt; array.length).
5671
     */
5672
    public static boolean[] add(final boolean[] array, final int index, final boolean element) {
5673 7 1. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return (boolean[]) add(array, index, Boolean.valueOf(element), Boolean.TYPE);
5674
    }
5675
5676
    /**
5677
     * <p>Inserts the specified element at the specified position in the array.
5678
     * Shifts the element currently at that position (if any) and any subsequent
5679
     * elements to the right (adds one to their indices).
5680
     *
5681
     * <p>This method returns a new array with the same elements of the input
5682
     * array plus the given element on the specified position. The component
5683
     * type of the returned array is always the same as that of the input
5684
     * array.
5685
     *
5686
     * <p>If the input array is {@code null}, a new one element array is returned
5687
     *  whose component type is the same as the element.
5688
     *
5689
     * <pre>
5690
     * ArrayUtils.add(null, 0, 'a')            = ['a']
5691
     * ArrayUtils.add(['a'], 0, 'b')           = ['b', 'a']
5692
     * ArrayUtils.add(['a', 'b'], 0, 'c')      = ['c', 'a', 'b']
5693
     * ArrayUtils.add(['a', 'b'], 1, 'k')      = ['a', 'k', 'b']
5694
     * ArrayUtils.add(['a', 'b', 'c'], 1, 't') = ['a', 't', 'b', 'c']
5695
     * </pre>
5696
     *
5697
     * @param array  the array to add the element to, may be {@code null}
5698
     * @param index  the position of the new object
5699
     * @param element  the object to add
5700
     * @return A new array containing the existing elements and the new element
5701
     * @throws IndexOutOfBoundsException if the index is out of range
5702
     * (index &lt; 0 || index &gt; array.length).
5703
     */
5704
    public static char[] add(final char[] array, final int index, final char element) {
5705 7 1. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return (char[]) add(array, index, Character.valueOf(element), Character.TYPE);
5706
    }
5707
5708
    /**
5709
     * <p>Inserts the specified element at the specified position in the array.
5710
     * Shifts the element currently at that position (if any) and any subsequent
5711
     * elements to the right (adds one to their indices).
5712
     *
5713
     * <p>This method returns a new array with the same elements of the input
5714
     * array plus the given element on the specified position. The component
5715
     * type of the returned array is always the same as that of the input
5716
     * array.
5717
     *
5718
     * <p>If the input array is {@code null}, a new one element array is returned
5719
     *  whose component type is the same as the element.
5720
     *
5721
     * <pre>
5722
     * ArrayUtils.add([1], 0, 2)         = [2, 1]
5723
     * ArrayUtils.add([2, 6], 2, 3)      = [2, 6, 3]
5724
     * ArrayUtils.add([2, 6], 0, 1)      = [1, 2, 6]
5725
     * ArrayUtils.add([2, 6, 3], 2, 1)   = [2, 6, 1, 3]
5726
     * </pre>
5727
     *
5728
     * @param array  the array to add the element to, may be {@code null}
5729
     * @param index  the position of the new object
5730
     * @param element  the object to add
5731
     * @return A new array containing the existing elements and the new element
5732
     * @throws IndexOutOfBoundsException if the index is out of range
5733
     * (index &lt; 0 || index &gt; array.length).
5734
     */
5735
    public static byte[] add(final byte[] array, final int index, final byte element) {
5736 7 1. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return (byte[]) add(array, index, Byte.valueOf(element), Byte.TYPE);
5737
    }
5738
5739
    /**
5740
     * <p>Inserts the specified element at the specified position in the array.
5741
     * Shifts the element currently at that position (if any) and any subsequent
5742
     * elements to the right (adds one to their indices).
5743
     *
5744
     * <p>This method returns a new array with the same elements of the input
5745
     * array plus the given element on the specified position. The component
5746
     * type of the returned array is always the same as that of the input
5747
     * array.
5748
     *
5749
     * <p>If the input array is {@code null}, a new one element array is returned
5750
     *  whose component type is the same as the element.
5751
     *
5752
     * <pre>
5753
     * ArrayUtils.add([1], 0, 2)         = [2, 1]
5754
     * ArrayUtils.add([2, 6], 2, 10)     = [2, 6, 10]
5755
     * ArrayUtils.add([2, 6], 0, -4)     = [-4, 2, 6]
5756
     * ArrayUtils.add([2, 6, 3], 2, 1)   = [2, 6, 1, 3]
5757
     * </pre>
5758
     *
5759
     * @param array  the array to add the element to, may be {@code null}
5760
     * @param index  the position of the new object
5761
     * @param element  the object to add
5762
     * @return A new array containing the existing elements and the new element
5763
     * @throws IndexOutOfBoundsException if the index is out of range
5764
     * (index &lt; 0 || index &gt; array.length).
5765
     */
5766
    public static short[] add(final short[] array, final int index, final short element) {
5767 7 1. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return (short[]) add(array, index, Short.valueOf(element), Short.TYPE);
5768
    }
5769
5770
    /**
5771
     * <p>Inserts the specified element at the specified position in the array.
5772
     * Shifts the element currently at that position (if any) and any subsequent
5773
     * elements to the right (adds one to their indices).
5774
     *
5775
     * <p>This method returns a new array with the same elements of the input
5776
     * array plus the given element on the specified position. The component
5777
     * type of the returned array is always the same as that of the input
5778
     * array.
5779
     *
5780
     * <p>If the input array is {@code null}, a new one element array is returned
5781
     *  whose component type is the same as the element.
5782
     *
5783
     * <pre>
5784
     * ArrayUtils.add([1], 0, 2)         = [2, 1]
5785
     * ArrayUtils.add([2, 6], 2, 10)     = [2, 6, 10]
5786
     * ArrayUtils.add([2, 6], 0, -4)     = [-4, 2, 6]
5787
     * ArrayUtils.add([2, 6, 3], 2, 1)   = [2, 6, 1, 3]
5788
     * </pre>
5789
     *
5790
     * @param array  the array to add the element to, may be {@code null}
5791
     * @param index  the position of the new object
5792
     * @param element  the object to add
5793
     * @return A new array containing the existing elements and the new element
5794
     * @throws IndexOutOfBoundsException if the index is out of range
5795
     * (index &lt; 0 || index &gt; array.length).
5796
     */
5797
    public static int[] add(final int[] array, final int index, final int element) {
5798 7 1. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return (int[]) add(array, index, Integer.valueOf(element), Integer.TYPE);
5799
    }
5800
5801
    /**
5802
     * <p>Inserts the specified element at the specified position in the array.
5803
     * Shifts the element currently at that position (if any) and any subsequent
5804
     * elements to the right (adds one to their indices).
5805
     *
5806
     * <p>This method returns a new array with the same elements of the input
5807
     * array plus the given element on the specified position. The component
5808
     * type of the returned array is always the same as that of the input
5809
     * array.
5810
     *
5811
     * <p>If the input array is {@code null}, a new one element array is returned
5812
     *  whose component type is the same as the element.
5813
     *
5814
     * <pre>
5815
     * ArrayUtils.add([1L], 0, 2L)           = [2L, 1L]
5816
     * ArrayUtils.add([2L, 6L], 2, 10L)      = [2L, 6L, 10L]
5817
     * ArrayUtils.add([2L, 6L], 0, -4L)      = [-4L, 2L, 6L]
5818
     * ArrayUtils.add([2L, 6L, 3L], 2, 1L)   = [2L, 6L, 1L, 3L]
5819
     * </pre>
5820
     *
5821
     * @param array  the array to add the element to, may be {@code null}
5822
     * @param index  the position of the new object
5823
     * @param element  the object to add
5824
     * @return A new array containing the existing elements and the new element
5825
     * @throws IndexOutOfBoundsException if the index is out of range
5826
     * (index &lt; 0 || index &gt; array.length).
5827
     */
5828
    public static long[] add(final long[] array, final int index, final long element) {
5829 7 1. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return (long[]) add(array, index, Long.valueOf(element), Long.TYPE);
5830
    }
5831
5832
    /**
5833
     * <p>Inserts the specified element at the specified position in the array.
5834
     * Shifts the element currently at that position (if any) and any subsequent
5835
     * elements to the right (adds one to their indices).
5836
     *
5837
     * <p>This method returns a new array with the same elements of the input
5838
     * array plus the given element on the specified position. The component
5839
     * type of the returned array is always the same as that of the input
5840
     * array.
5841
     *
5842
     * <p>If the input array is {@code null}, a new one element array is returned
5843
     *  whose component type is the same as the element.
5844
     *
5845
     * <pre>
5846
     * ArrayUtils.add([1.1f], 0, 2.2f)               = [2.2f, 1.1f]
5847
     * ArrayUtils.add([2.3f, 6.4f], 2, 10.5f)        = [2.3f, 6.4f, 10.5f]
5848
     * ArrayUtils.add([2.6f, 6.7f], 0, -4.8f)        = [-4.8f, 2.6f, 6.7f]
5849
     * ArrayUtils.add([2.9f, 6.0f, 0.3f], 2, 1.0f)   = [2.9f, 6.0f, 1.0f, 0.3f]
5850
     * </pre>
5851
     *
5852
     * @param array  the array to add the element to, may be {@code null}
5853
     * @param index  the position of the new object
5854
     * @param element  the object to add
5855
     * @return A new array containing the existing elements and the new element
5856
     * @throws IndexOutOfBoundsException if the index is out of range
5857
     * (index &lt; 0 || index &gt; array.length).
5858
     */
5859
    public static float[] add(final float[] array, final int index, final float element) {
5860 7 1. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return (float[]) add(array, index, Float.valueOf(element), Float.TYPE);
5861
    }
5862
5863
    /**
5864
     * <p>Inserts the specified element at the specified position in the array.
5865
     * Shifts the element currently at that position (if any) and any subsequent
5866
     * elements to the right (adds one to their indices).
5867
     *
5868
     * <p>This method returns a new array with the same elements of the input
5869
     * array plus the given element on the specified position. The component
5870
     * type of the returned array is always the same as that of the input
5871
     * array.
5872
     *
5873
     * <p>If the input array is {@code null}, a new one element array is returned
5874
     *  whose component type is the same as the element.
5875
     *
5876
     * <pre>
5877
     * ArrayUtils.add([1.1], 0, 2.2)              = [2.2, 1.1]
5878
     * ArrayUtils.add([2.3, 6.4], 2, 10.5)        = [2.3, 6.4, 10.5]
5879
     * ArrayUtils.add([2.6, 6.7], 0, -4.8)        = [-4.8, 2.6, 6.7]
5880
     * ArrayUtils.add([2.9, 6.0, 0.3], 2, 1.0)    = [2.9, 6.0, 1.0, 0.3]
5881
     * </pre>
5882
     *
5883
     * @param array  the array to add the element to, may be {@code null}
5884
     * @param index  the position of the new object
5885
     * @param element  the object to add
5886
     * @return A new array containing the existing elements and the new element
5887
     * @throws IndexOutOfBoundsException if the index is out of range
5888
     * (index &lt; 0 || index &gt; array.length).
5889
     */
5890
    public static double[] add(final double[] array, final int index, final double element) {
5891 7 1. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return (double[]) add(array, index, Double.valueOf(element), Double.TYPE);
5892
    }
5893
5894
    /**
5895
     * Underlying implementation of add(array, index, element) methods.
5896
     * The last parameter is the class, which may not equal element.getClass
5897
     * for primitives.
5898
     *
5899
     * @param array  the array to add the element to, may be {@code null}
5900
     * @param index  the position of the new object
5901
     * @param element  the object to add
5902
     * @param clss the type of the element being added
5903
     * @return A new array containing the existing elements and the new element
5904
     */
5905
    private static Object add(final Object array, final int index, final Object element, final Class<?> clss) {
5906 7 1. add : negated conditional → NOT_SCHEDULED
2. add : negated conditional → NOT_SCHEDULED
3. add : negated conditional → NOT_SCHEDULED
4. add : negated conditional → NOT_SCHEDULED
5. add : negated conditional → NOT_SCHEDULED
6. add : negated conditional → NOT_SCHEDULED
7. add : negated conditional → NOT_SCHEDULED
        if (array == null) {
5907 7 1. add : negated conditional → NOT_SCHEDULED
2. add : negated conditional → NOT_SCHEDULED
3. add : negated conditional → NOT_SCHEDULED
4. add : negated conditional → NOT_SCHEDULED
5. add : negated conditional → NOT_SCHEDULED
6. add : negated conditional → NOT_SCHEDULED
7. add : negated conditional → NOT_SCHEDULED
            if (index != 0) {
5908
                throw new IndexOutOfBoundsException("Index: " + index + ", Length: 0");
5909
            }
5910
            final Object joinedArray = Array.newInstance(clss, 1);
5911 7 1. add : removed call to java/lang/reflect/Array::set → NOT_SCHEDULED
2. add : removed call to java/lang/reflect/Array::set → NOT_SCHEDULED
3. add : removed call to java/lang/reflect/Array::set → NOT_SCHEDULED
4. add : removed call to java/lang/reflect/Array::set → NOT_SCHEDULED
5. add : removed call to java/lang/reflect/Array::set → NOT_SCHEDULED
6. add : removed call to java/lang/reflect/Array::set → NOT_SCHEDULED
7. add : removed call to java/lang/reflect/Array::set → NOT_SCHEDULED
            Array.set(joinedArray, 0, element);
5912 7 1. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return joinedArray;
5913
        }
5914
        final int length = Array.getLength(array);
5915 28 1. add : changed conditional boundary → NOT_SCHEDULED
2. add : changed conditional boundary → NOT_SCHEDULED
3. add : negated conditional → NOT_SCHEDULED
4. add : negated conditional → NOT_SCHEDULED
5. add : changed conditional boundary → NOT_SCHEDULED
6. add : changed conditional boundary → NOT_SCHEDULED
7. add : negated conditional → NOT_SCHEDULED
8. add : negated conditional → NOT_SCHEDULED
9. add : changed conditional boundary → NOT_SCHEDULED
10. add : changed conditional boundary → NOT_SCHEDULED
11. add : negated conditional → NOT_SCHEDULED
12. add : negated conditional → NOT_SCHEDULED
13. add : changed conditional boundary → NOT_SCHEDULED
14. add : changed conditional boundary → NOT_SCHEDULED
15. add : negated conditional → NOT_SCHEDULED
16. add : negated conditional → NOT_SCHEDULED
17. add : changed conditional boundary → NOT_SCHEDULED
18. add : changed conditional boundary → NOT_SCHEDULED
19. add : negated conditional → NOT_SCHEDULED
20. add : negated conditional → NOT_SCHEDULED
21. add : changed conditional boundary → NOT_SCHEDULED
22. add : changed conditional boundary → NOT_SCHEDULED
23. add : negated conditional → NOT_SCHEDULED
24. add : negated conditional → NOT_SCHEDULED
25. add : changed conditional boundary → NOT_SCHEDULED
26. add : changed conditional boundary → NOT_SCHEDULED
27. add : negated conditional → NOT_SCHEDULED
28. add : negated conditional → NOT_SCHEDULED
        if (index > length || index < 0) {
5916
            throw new IndexOutOfBoundsException("Index: " + index + ", Length: " + length);
5917
        }
5918 7 1. add : Replaced integer addition with subtraction → NOT_SCHEDULED
2. add : Replaced integer addition with subtraction → NOT_SCHEDULED
3. add : Replaced integer addition with subtraction → NOT_SCHEDULED
4. add : Replaced integer addition with subtraction → NOT_SCHEDULED
5. add : Replaced integer addition with subtraction → NOT_SCHEDULED
6. add : Replaced integer addition with subtraction → NOT_SCHEDULED
7. add : Replaced integer addition with subtraction → NOT_SCHEDULED
        final Object result = Array.newInstance(clss, length + 1);
5919 7 1. add : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
2. add : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
3. add : removed call to java/lang/System::arraycopy → KILLED
4. add : removed call to java/lang/System::arraycopy → KILLED
5. add : removed call to java/lang/System::arraycopy → KILLED
6. add : removed call to java/lang/System::arraycopy → KILLED
7. add : removed call to java/lang/System::arraycopy → KILLED
        System.arraycopy(array, 0, result, 0, index);
5920 7 1. add : removed call to java/lang/reflect/Array::set → NOT_SCHEDULED
2. add : removed call to java/lang/reflect/Array::set → NOT_SCHEDULED
3. add : removed call to java/lang/reflect/Array::set → NOT_SCHEDULED
4. add : removed call to java/lang/reflect/Array::set → NOT_SCHEDULED
5. add : removed call to java/lang/reflect/Array::set → NOT_SCHEDULED
6. add : removed call to java/lang/reflect/Array::set → NOT_SCHEDULED
7. add : removed call to java/lang/reflect/Array::set → NOT_SCHEDULED
        Array.set(result, index, element);
5921 14 1. add : changed conditional boundary → NOT_SCHEDULED
2. add : negated conditional → NOT_SCHEDULED
3. add : changed conditional boundary → NOT_SCHEDULED
4. add : negated conditional → NOT_SCHEDULED
5. add : changed conditional boundary → NOT_SCHEDULED
6. add : negated conditional → NOT_SCHEDULED
7. add : changed conditional boundary → NOT_SCHEDULED
8. add : negated conditional → NOT_SCHEDULED
9. add : changed conditional boundary → NOT_SCHEDULED
10. add : negated conditional → NOT_SCHEDULED
11. add : changed conditional boundary → NOT_SCHEDULED
12. add : negated conditional → NOT_SCHEDULED
13. add : changed conditional boundary → NOT_SCHEDULED
14. add : negated conditional → NOT_SCHEDULED
        if (index < length) {
5922 21 1. add : Replaced integer addition with subtraction → NOT_SCHEDULED
2. add : Replaced integer subtraction with addition → NOT_SCHEDULED
3. add : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
4. add : Replaced integer addition with subtraction → NOT_SCHEDULED
5. add : Replaced integer subtraction with addition → NOT_SCHEDULED
6. add : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
7. add : Replaced integer addition with subtraction → NOT_SCHEDULED
8. add : Replaced integer subtraction with addition → NOT_SCHEDULED
9. add : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
10. add : Replaced integer addition with subtraction → NOT_SCHEDULED
11. add : Replaced integer subtraction with addition → NOT_SCHEDULED
12. add : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
13. add : Replaced integer addition with subtraction → NOT_SCHEDULED
14. add : Replaced integer subtraction with addition → NOT_SCHEDULED
15. add : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
16. add : Replaced integer addition with subtraction → NOT_SCHEDULED
17. add : Replaced integer subtraction with addition → NOT_SCHEDULED
18. add : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
19. add : Replaced integer addition with subtraction → NOT_SCHEDULED
20. add : Replaced integer subtraction with addition → NOT_SCHEDULED
21. add : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
            System.arraycopy(array, index, result, index + 1, length - index);
5923
        }
5924 7 1. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. add : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return result;
5925
    }
5926
5927
    /**
5928
     * <p>Removes the element at the specified position from the specified array.
5929
     * All subsequent elements are shifted to the left (subtracts one from
5930
     * their indices).
5931
     *
5932
     * <p>This method returns a new array with the same elements of the input
5933
     * array except the element on the specified position. The component
5934
     * type of the returned array is always the same as that of the input
5935
     * array.
5936
     *
5937
     * <p>If the input array is {@code null}, an IndexOutOfBoundsException
5938
     * will be thrown, because in that case no valid index can be specified.
5939
     *
5940
     * <pre>
5941
     * ArrayUtils.remove(["a"], 0)           = []
5942
     * ArrayUtils.remove(["a", "b"], 0)      = ["b"]
5943
     * ArrayUtils.remove(["a", "b"], 1)      = ["a"]
5944
     * ArrayUtils.remove(["a", "b", "c"], 1) = ["a", "c"]
5945
     * </pre>
5946
     *
5947
     * @param <T> the component type of the array
5948
     * @param array  the array to remove the element from, may not be {@code null}
5949
     * @param index  the position of the element to be removed
5950
     * @return A new array containing the existing elements except the element
5951
     *         at the specified position.
5952
     * @throws IndexOutOfBoundsException if the index is out of range
5953
     * (index &lt; 0 || index &gt;= array.length), or if the array is {@code null}.
5954
     * @since 2.1
5955
     */
5956
    @SuppressWarnings("unchecked") // remove() always creates an array of the same type as its input
5957
    public static <T> T[] remove(final T[] array, final int index) {
5958 7 1. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return (T[]) remove((Object) array, index);
5959
    }
5960
5961
    /**
5962
     * <p>Removes the first occurrence of the specified element from the
5963
     * specified array. All subsequent elements are shifted to the left
5964
     * (subtracts one from their indices). If the array doesn't contains
5965
     * such an element, no elements are removed from the array.
5966
     *
5967
     * <p>This method returns a new array with the same elements of the input
5968
     * array except the first occurrence of the specified element. The component
5969
     * type of the returned array is always the same as that of the input
5970
     * array.
5971
     *
5972
     * <pre>
5973
     * ArrayUtils.removeElement(null, "a")            = null
5974
     * ArrayUtils.removeElement([], "a")              = []
5975
     * ArrayUtils.removeElement(["a"], "b")           = ["a"]
5976
     * ArrayUtils.removeElement(["a", "b"], "a")      = ["b"]
5977
     * ArrayUtils.removeElement(["a", "b", "a"], "a") = ["b", "a"]
5978
     * </pre>
5979
     *
5980
     * @param <T> the component type of the array
5981
     * @param array  the array to remove the element from, may be {@code null}
5982
     * @param element  the element to be removed
5983
     * @return A new array containing the existing elements except the first
5984
     *         occurrence of the specified element.
5985
     * @since 2.1
5986
     */
5987
    public static <T> T[] removeElement(final T[] array, final Object element) {
5988
        final int index = indexOf(array, element);
5989 7 1. removeElement : negated conditional → NOT_SCHEDULED
2. removeElement : negated conditional → NOT_SCHEDULED
3. removeElement : negated conditional → NOT_SCHEDULED
4. removeElement : negated conditional → NOT_SCHEDULED
5. removeElement : negated conditional → NOT_SCHEDULED
6. removeElement : negated conditional → NOT_SCHEDULED
7. removeElement : negated conditional → NOT_SCHEDULED
        if (index == INDEX_NOT_FOUND) {
5990 7 1. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array);
5991
        }
5992 7 1. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return remove(array, index);
5993
    }
5994
5995
    /**
5996
     * <p>Removes the element at the specified position from the specified array.
5997
     * All subsequent elements are shifted to the left (subtracts one from
5998
     * their indices).
5999
     *
6000
     * <p>This method returns a new array with the same elements of the input
6001
     * array except the element on the specified position. The component
6002
     * type of the returned array is always the same as that of the input
6003
     * array.
6004
     *
6005
     * <p>If the input array is {@code null}, an IndexOutOfBoundsException
6006
     * will be thrown, because in that case no valid index can be specified.
6007
     *
6008
     * <pre>
6009
     * ArrayUtils.remove([true], 0)              = []
6010
     * ArrayUtils.remove([true, false], 0)       = [false]
6011
     * ArrayUtils.remove([true, false], 1)       = [true]
6012
     * ArrayUtils.remove([true, true, false], 1) = [true, false]
6013
     * </pre>
6014
     *
6015
     * @param array  the array to remove the element from, may not be {@code null}
6016
     * @param index  the position of the element to be removed
6017
     * @return A new array containing the existing elements except the element
6018
     *         at the specified position.
6019
     * @throws IndexOutOfBoundsException if the index is out of range
6020
     * (index &lt; 0 || index &gt;= array.length), or if the array is {@code null}.
6021
     * @since 2.1
6022
     */
6023
    public static boolean[] remove(final boolean[] array, final int index) {
6024 7 1. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return (boolean[]) remove((Object) array, index);
6025
    }
6026
6027
    /**
6028
     * <p>Removes the first occurrence of the specified element from the
6029
     * specified array. All subsequent elements are shifted to the left
6030
     * (subtracts one from their indices). If the array doesn't contains
6031
     * such an element, no elements are removed from the array.
6032
     *
6033
     * <p>This method returns a new array with the same elements of the input
6034
     * array except the first occurrence of the specified element. The component
6035
     * type of the returned array is always the same as that of the input
6036
     * array.
6037
     *
6038
     * <pre>
6039
     * ArrayUtils.removeElement(null, true)                = null
6040
     * ArrayUtils.removeElement([], true)                  = []
6041
     * ArrayUtils.removeElement([true], false)             = [true]
6042
     * ArrayUtils.removeElement([true, false], false)      = [true]
6043
     * ArrayUtils.removeElement([true, false, true], true) = [false, true]
6044
     * </pre>
6045
     *
6046
     * @param array  the array to remove the element from, may be {@code null}
6047
     * @param element  the element to be removed
6048
     * @return A new array containing the existing elements except the first
6049
     *         occurrence of the specified element.
6050
     * @since 2.1
6051
     */
6052
    public static boolean[] removeElement(final boolean[] array, final boolean element) {
6053
        final int index = indexOf(array, element);
6054 7 1. removeElement : negated conditional → NOT_SCHEDULED
2. removeElement : negated conditional → NOT_SCHEDULED
3. removeElement : negated conditional → NOT_SCHEDULED
4. removeElement : negated conditional → NOT_SCHEDULED
5. removeElement : negated conditional → NOT_SCHEDULED
6. removeElement : negated conditional → NOT_SCHEDULED
7. removeElement : negated conditional → NOT_SCHEDULED
        if (index == INDEX_NOT_FOUND) {
6055 7 1. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array);
6056
        }
6057 7 1. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return remove(array, index);
6058
    }
6059
6060
    /**
6061
     * <p>Removes the element at the specified position from the specified array.
6062
     * All subsequent elements are shifted to the left (subtracts one from
6063
     * their indices).
6064
     *
6065
     * <p>This method returns a new array with the same elements of the input
6066
     * array except the element on the specified position. The component
6067
     * type of the returned array is always the same as that of the input
6068
     * array.
6069
     *
6070
     * <p>If the input array is {@code null}, an IndexOutOfBoundsException
6071
     * will be thrown, because in that case no valid index can be specified.
6072
     *
6073
     * <pre>
6074
     * ArrayUtils.remove([1], 0)          = []
6075
     * ArrayUtils.remove([1, 0], 0)       = [0]
6076
     * ArrayUtils.remove([1, 0], 1)       = [1]
6077
     * ArrayUtils.remove([1, 0, 1], 1)    = [1, 1]
6078
     * </pre>
6079
     *
6080
     * @param array  the array to remove the element from, may not be {@code null}
6081
     * @param index  the position of the element to be removed
6082
     * @return A new array containing the existing elements except the element
6083
     *         at the specified position.
6084
     * @throws IndexOutOfBoundsException if the index is out of range
6085
     * (index &lt; 0 || index &gt;= array.length), or if the array is {@code null}.
6086
     * @since 2.1
6087
     */
6088
    public static byte[] remove(final byte[] array, final int index) {
6089 7 1. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return (byte[]) remove((Object) array, index);
6090
    }
6091
6092
    /**
6093
     * <p>Removes the first occurrence of the specified element from the
6094
     * specified array. All subsequent elements are shifted to the left
6095
     * (subtracts one from their indices). If the array doesn't contains
6096
     * such an element, no elements are removed from the array.
6097
     *
6098
     * <p>This method returns a new array with the same elements of the input
6099
     * array except the first occurrence of the specified element. The component
6100
     * type of the returned array is always the same as that of the input
6101
     * array.
6102
     *
6103
     * <pre>
6104
     * ArrayUtils.removeElement(null, 1)        = null
6105
     * ArrayUtils.removeElement([], 1)          = []
6106
     * ArrayUtils.removeElement([1], 0)         = [1]
6107
     * ArrayUtils.removeElement([1, 0], 0)      = [1]
6108
     * ArrayUtils.removeElement([1, 0, 1], 1)   = [0, 1]
6109
     * </pre>
6110
     *
6111
     * @param array  the array to remove the element from, may be {@code null}
6112
     * @param element  the element to be removed
6113
     * @return A new array containing the existing elements except the first
6114
     *         occurrence of the specified element.
6115
     * @since 2.1
6116
     */
6117
    public static byte[] removeElement(final byte[] array, final byte element) {
6118
        final int index = indexOf(array, element);
6119 7 1. removeElement : negated conditional → NOT_SCHEDULED
2. removeElement : negated conditional → NOT_SCHEDULED
3. removeElement : negated conditional → NOT_SCHEDULED
4. removeElement : negated conditional → NOT_SCHEDULED
5. removeElement : negated conditional → NOT_SCHEDULED
6. removeElement : negated conditional → NOT_SCHEDULED
7. removeElement : negated conditional → NOT_SCHEDULED
        if (index == INDEX_NOT_FOUND) {
6120 7 1. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array);
6121
        }
6122 7 1. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return remove(array, index);
6123
    }
6124
6125
    /**
6126
     * <p>Removes the element at the specified position from the specified array.
6127
     * All subsequent elements are shifted to the left (subtracts one from
6128
     * their indices).
6129
     *
6130
     * <p>This method returns a new array with the same elements of the input
6131
     * array except the element on the specified position. The component
6132
     * type of the returned array is always the same as that of the input
6133
     * array.
6134
     *
6135
     * <p>If the input array is {@code null}, an IndexOutOfBoundsException
6136
     * will be thrown, because in that case no valid index can be specified.
6137
     *
6138
     * <pre>
6139
     * ArrayUtils.remove(['a'], 0)           = []
6140
     * ArrayUtils.remove(['a', 'b'], 0)      = ['b']
6141
     * ArrayUtils.remove(['a', 'b'], 1)      = ['a']
6142
     * ArrayUtils.remove(['a', 'b', 'c'], 1) = ['a', 'c']
6143
     * </pre>
6144
     *
6145
     * @param array  the array to remove the element from, may not be {@code null}
6146
     * @param index  the position of the element to be removed
6147
     * @return A new array containing the existing elements except the element
6148
     *         at the specified position.
6149
     * @throws IndexOutOfBoundsException if the index is out of range
6150
     * (index &lt; 0 || index &gt;= array.length), or if the array is {@code null}.
6151
     * @since 2.1
6152
     */
6153
    public static char[] remove(final char[] array, final int index) {
6154 7 1. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return (char[]) remove((Object) array, index);
6155
    }
6156
6157
    /**
6158
     * <p>Removes the first occurrence of the specified element from the
6159
     * specified array. All subsequent elements are shifted to the left
6160
     * (subtracts one from their indices). If the array doesn't contains
6161
     * such an element, no elements are removed from the array.
6162
     *
6163
     * <p>This method returns a new array with the same elements of the input
6164
     * array except the first occurrence of the specified element. The component
6165
     * type of the returned array is always the same as that of the input
6166
     * array.
6167
     *
6168
     * <pre>
6169
     * ArrayUtils.removeElement(null, 'a')            = null
6170
     * ArrayUtils.removeElement([], 'a')              = []
6171
     * ArrayUtils.removeElement(['a'], 'b')           = ['a']
6172
     * ArrayUtils.removeElement(['a', 'b'], 'a')      = ['b']
6173
     * ArrayUtils.removeElement(['a', 'b', 'a'], 'a') = ['b', 'a']
6174
     * </pre>
6175
     *
6176
     * @param array  the array to remove the element from, may be {@code null}
6177
     * @param element  the element to be removed
6178
     * @return A new array containing the existing elements except the first
6179
     *         occurrence of the specified element.
6180
     * @since 2.1
6181
     */
6182
    public static char[] removeElement(final char[] array, final char element) {
6183
        final int index = indexOf(array, element);
6184 7 1. removeElement : negated conditional → NOT_SCHEDULED
2. removeElement : negated conditional → NOT_SCHEDULED
3. removeElement : negated conditional → NOT_SCHEDULED
4. removeElement : negated conditional → NOT_SCHEDULED
5. removeElement : negated conditional → NOT_SCHEDULED
6. removeElement : negated conditional → NOT_SCHEDULED
7. removeElement : negated conditional → NOT_SCHEDULED
        if (index == INDEX_NOT_FOUND) {
6185 7 1. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array);
6186
        }
6187 7 1. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return remove(array, index);
6188
    }
6189
6190
    /**
6191
     * <p>Removes the element at the specified position from the specified array.
6192
     * All subsequent elements are shifted to the left (subtracts one from
6193
     * their indices).
6194
     *
6195
     * <p>This method returns a new array with the same elements of the input
6196
     * array except the element on the specified position. The component
6197
     * type of the returned array is always the same as that of the input
6198
     * array.
6199
     *
6200
     * <p>If the input array is {@code null}, an IndexOutOfBoundsException
6201
     * will be thrown, because in that case no valid index can be specified.
6202
     *
6203
     * <pre>
6204
     * ArrayUtils.remove([1.1], 0)           = []
6205
     * ArrayUtils.remove([2.5, 6.0], 0)      = [6.0]
6206
     * ArrayUtils.remove([2.5, 6.0], 1)      = [2.5]
6207
     * ArrayUtils.remove([2.5, 6.0, 3.8], 1) = [2.5, 3.8]
6208
     * </pre>
6209
     *
6210
     * @param array  the array to remove the element from, may not be {@code null}
6211
     * @param index  the position of the element to be removed
6212
     * @return A new array containing the existing elements except the element
6213
     *         at the specified position.
6214
     * @throws IndexOutOfBoundsException if the index is out of range
6215
     * (index &lt; 0 || index &gt;= array.length), or if the array is {@code null}.
6216
     * @since 2.1
6217
     */
6218
    public static double[] remove(final double[] array, final int index) {
6219 7 1. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return (double[]) remove((Object) array, index);
6220
    }
6221
6222
    /**
6223
     * <p>Removes the first occurrence of the specified element from the
6224
     * specified array. All subsequent elements are shifted to the left
6225
     * (subtracts one from their indices). If the array doesn't contains
6226
     * such an element, no elements are removed from the array.
6227
     *
6228
     * <p>This method returns a new array with the same elements of the input
6229
     * array except the first occurrence of the specified element. The component
6230
     * type of the returned array is always the same as that of the input
6231
     * array.
6232
     *
6233
     * <pre>
6234
     * ArrayUtils.removeElement(null, 1.1)            = null
6235
     * ArrayUtils.removeElement([], 1.1)              = []
6236
     * ArrayUtils.removeElement([1.1], 1.2)           = [1.1]
6237
     * ArrayUtils.removeElement([1.1, 2.3], 1.1)      = [2.3]
6238
     * ArrayUtils.removeElement([1.1, 2.3, 1.1], 1.1) = [2.3, 1.1]
6239
     * </pre>
6240
     *
6241
     * @param array  the array to remove the element from, may be {@code null}
6242
     * @param element  the element to be removed
6243
     * @return A new array containing the existing elements except the first
6244
     *         occurrence of the specified element.
6245
     * @since 2.1
6246
     */
6247
    public static double[] removeElement(final double[] array, final double element) {
6248
        final int index = indexOf(array, element);
6249 7 1. removeElement : negated conditional → NOT_SCHEDULED
2. removeElement : negated conditional → NOT_SCHEDULED
3. removeElement : negated conditional → NOT_SCHEDULED
4. removeElement : negated conditional → NOT_SCHEDULED
5. removeElement : negated conditional → NOT_SCHEDULED
6. removeElement : negated conditional → NOT_SCHEDULED
7. removeElement : negated conditional → NOT_SCHEDULED
        if (index == INDEX_NOT_FOUND) {
6250 7 1. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array);
6251
        }
6252 7 1. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return remove(array, index);
6253
    }
6254
6255
    /**
6256
     * <p>Removes the element at the specified position from the specified array.
6257
     * All subsequent elements are shifted to the left (subtracts one from
6258
     * their indices).
6259
     *
6260
     * <p>This method returns a new array with the same elements of the input
6261
     * array except the element on the specified position. The component
6262
     * type of the returned array is always the same as that of the input
6263
     * array.
6264
     *
6265
     * <p>If the input array is {@code null}, an IndexOutOfBoundsException
6266
     * will be thrown, because in that case no valid index can be specified.
6267
     *
6268
     * <pre>
6269
     * ArrayUtils.remove([1.1], 0)           = []
6270
     * ArrayUtils.remove([2.5, 6.0], 0)      = [6.0]
6271
     * ArrayUtils.remove([2.5, 6.0], 1)      = [2.5]
6272
     * ArrayUtils.remove([2.5, 6.0, 3.8], 1) = [2.5, 3.8]
6273
     * </pre>
6274
     *
6275
     * @param array  the array to remove the element from, may not be {@code null}
6276
     * @param index  the position of the element to be removed
6277
     * @return A new array containing the existing elements except the element
6278
     *         at the specified position.
6279
     * @throws IndexOutOfBoundsException if the index is out of range
6280
     * (index &lt; 0 || index &gt;= array.length), or if the array is {@code null}.
6281
     * @since 2.1
6282
     */
6283
    public static float[] remove(final float[] array, final int index) {
6284 7 1. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return (float[]) remove((Object) array, index);
6285
    }
6286
6287
    /**
6288
     * <p>Removes the first occurrence of the specified element from the
6289
     * specified array. All subsequent elements are shifted to the left
6290
     * (subtracts one from their indices). If the array doesn't contains
6291
     * such an element, no elements are removed from the array.
6292
     *
6293
     * <p>This method returns a new array with the same elements of the input
6294
     * array except the first occurrence of the specified element. The component
6295
     * type of the returned array is always the same as that of the input
6296
     * array.
6297
     *
6298
     * <pre>
6299
     * ArrayUtils.removeElement(null, 1.1)            = null
6300
     * ArrayUtils.removeElement([], 1.1)              = []
6301
     * ArrayUtils.removeElement([1.1], 1.2)           = [1.1]
6302
     * ArrayUtils.removeElement([1.1, 2.3], 1.1)      = [2.3]
6303
     * ArrayUtils.removeElement([1.1, 2.3, 1.1], 1.1) = [2.3, 1.1]
6304
     * </pre>
6305
     *
6306
     * @param array  the array to remove the element from, may be {@code null}
6307
     * @param element  the element to be removed
6308
     * @return A new array containing the existing elements except the first
6309
     *         occurrence of the specified element.
6310
     * @since 2.1
6311
     */
6312
    public static float[] removeElement(final float[] array, final float element) {
6313
        final int index = indexOf(array, element);
6314 7 1. removeElement : negated conditional → NOT_SCHEDULED
2. removeElement : negated conditional → NOT_SCHEDULED
3. removeElement : negated conditional → NOT_SCHEDULED
4. removeElement : negated conditional → NOT_SCHEDULED
5. removeElement : negated conditional → NOT_SCHEDULED
6. removeElement : negated conditional → NOT_SCHEDULED
7. removeElement : negated conditional → NOT_SCHEDULED
        if (index == INDEX_NOT_FOUND) {
6315 7 1. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array);
6316
        }
6317 7 1. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return remove(array, index);
6318
    }
6319
6320
    /**
6321
     * <p>Removes the element at the specified position from the specified array.
6322
     * All subsequent elements are shifted to the left (subtracts one from
6323
     * their indices).
6324
     *
6325
     * <p>This method returns a new array with the same elements of the input
6326
     * array except the element on the specified position. The component
6327
     * type of the returned array is always the same as that of the input
6328
     * array.
6329
     *
6330
     * <p>If the input array is {@code null}, an IndexOutOfBoundsException
6331
     * will be thrown, because in that case no valid index can be specified.
6332
     *
6333
     * <pre>
6334
     * ArrayUtils.remove([1], 0)         = []
6335
     * ArrayUtils.remove([2, 6], 0)      = [6]
6336
     * ArrayUtils.remove([2, 6], 1)      = [2]
6337
     * ArrayUtils.remove([2, 6, 3], 1)   = [2, 3]
6338
     * </pre>
6339
     *
6340
     * @param array  the array to remove the element from, may not be {@code null}
6341
     * @param index  the position of the element to be removed
6342
     * @return A new array containing the existing elements except the element
6343
     *         at the specified position.
6344
     * @throws IndexOutOfBoundsException if the index is out of range
6345
     * (index &lt; 0 || index &gt;= array.length), or if the array is {@code null}.
6346
     * @since 2.1
6347
     */
6348
    public static int[] remove(final int[] array, final int index) {
6349 7 1. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return (int[]) remove((Object) array, index);
6350
    }
6351
6352
    /**
6353
     * <p>Removes the first occurrence of the specified element from the
6354
     * specified array. All subsequent elements are shifted to the left
6355
     * (subtracts one from their indices). If the array doesn't contains
6356
     * such an element, no elements are removed from the array.
6357
     *
6358
     * <p>This method returns a new array with the same elements of the input
6359
     * array except the first occurrence of the specified element. The component
6360
     * type of the returned array is always the same as that of the input
6361
     * array.
6362
     *
6363
     * <pre>
6364
     * ArrayUtils.removeElement(null, 1)      = null
6365
     * ArrayUtils.removeElement([], 1)        = []
6366
     * ArrayUtils.removeElement([1], 2)       = [1]
6367
     * ArrayUtils.removeElement([1, 3], 1)    = [3]
6368
     * ArrayUtils.removeElement([1, 3, 1], 1) = [3, 1]
6369
     * </pre>
6370
     *
6371
     * @param array  the array to remove the element from, may be {@code null}
6372
     * @param element  the element to be removed
6373
     * @return A new array containing the existing elements except the first
6374
     *         occurrence of the specified element.
6375
     * @since 2.1
6376
     */
6377
    public static int[] removeElement(final int[] array, final int element) {
6378
        final int index = indexOf(array, element);
6379 7 1. removeElement : negated conditional → NOT_SCHEDULED
2. removeElement : negated conditional → NOT_SCHEDULED
3. removeElement : negated conditional → NOT_SCHEDULED
4. removeElement : negated conditional → NOT_SCHEDULED
5. removeElement : negated conditional → NOT_SCHEDULED
6. removeElement : negated conditional → NOT_SCHEDULED
7. removeElement : negated conditional → NOT_SCHEDULED
        if (index == INDEX_NOT_FOUND) {
6380 7 1. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array);
6381
        }
6382 7 1. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return remove(array, index);
6383
    }
6384
6385
    /**
6386
     * <p>Removes the element at the specified position from the specified array.
6387
     * All subsequent elements are shifted to the left (subtracts one from
6388
     * their indices).
6389
     *
6390
     * <p>This method returns a new array with the same elements of the input
6391
     * array except the element on the specified position. The component
6392
     * type of the returned array is always the same as that of the input
6393
     * array.
6394
     *
6395
     * <p>If the input array is {@code null}, an IndexOutOfBoundsException
6396
     * will be thrown, because in that case no valid index can be specified.
6397
     *
6398
     * <pre>
6399
     * ArrayUtils.remove([1], 0)         = []
6400
     * ArrayUtils.remove([2, 6], 0)      = [6]
6401
     * ArrayUtils.remove([2, 6], 1)      = [2]
6402
     * ArrayUtils.remove([2, 6, 3], 1)   = [2, 3]
6403
     * </pre>
6404
     *
6405
     * @param array  the array to remove the element from, may not be {@code null}
6406
     * @param index  the position of the element to be removed
6407
     * @return A new array containing the existing elements except the element
6408
     *         at the specified position.
6409
     * @throws IndexOutOfBoundsException if the index is out of range
6410
     * (index &lt; 0 || index &gt;= array.length), or if the array is {@code null}.
6411
     * @since 2.1
6412
     */
6413
    public static long[] remove(final long[] array, final int index) {
6414 7 1. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return (long[]) remove((Object) array, index);
6415
    }
6416
6417
    /**
6418
     * <p>Removes the first occurrence of the specified element from the
6419
     * specified array. All subsequent elements are shifted to the left
6420
     * (subtracts one from their indices). If the array doesn't contains
6421
     * such an element, no elements are removed from the array.
6422
     *
6423
     * <p>This method returns a new array with the same elements of the input
6424
     * array except the first occurrence of the specified element. The component
6425
     * type of the returned array is always the same as that of the input
6426
     * array.
6427
     *
6428
     * <pre>
6429
     * ArrayUtils.removeElement(null, 1)      = null
6430
     * ArrayUtils.removeElement([], 1)        = []
6431
     * ArrayUtils.removeElement([1], 2)       = [1]
6432
     * ArrayUtils.removeElement([1, 3], 1)    = [3]
6433
     * ArrayUtils.removeElement([1, 3, 1], 1) = [3, 1]
6434
     * </pre>
6435
     *
6436
     * @param array  the array to remove the element from, may be {@code null}
6437
     * @param element  the element to be removed
6438
     * @return A new array containing the existing elements except the first
6439
     *         occurrence of the specified element.
6440
     * @since 2.1
6441
     */
6442
    public static long[] removeElement(final long[] array, final long element) {
6443
        final int index = indexOf(array, element);
6444 7 1. removeElement : negated conditional → NOT_SCHEDULED
2. removeElement : negated conditional → NOT_SCHEDULED
3. removeElement : negated conditional → NOT_SCHEDULED
4. removeElement : negated conditional → NOT_SCHEDULED
5. removeElement : negated conditional → NOT_SCHEDULED
6. removeElement : negated conditional → NOT_SCHEDULED
7. removeElement : negated conditional → NOT_SCHEDULED
        if (index == INDEX_NOT_FOUND) {
6445 7 1. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array);
6446
        }
6447 7 1. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return remove(array, index);
6448
    }
6449
6450
    /**
6451
     * <p>Removes the element at the specified position from the specified array.
6452
     * All subsequent elements are shifted to the left (subtracts one from
6453
     * their indices).
6454
     *
6455
     * <p>This method returns a new array with the same elements of the input
6456
     * array except the element on the specified position. The component
6457
     * type of the returned array is always the same as that of the input
6458
     * array.
6459
     *
6460
     * <p>If the input array is {@code null}, an IndexOutOfBoundsException
6461
     * will be thrown, because in that case no valid index can be specified.
6462
     *
6463
     * <pre>
6464
     * ArrayUtils.remove([1], 0)         = []
6465
     * ArrayUtils.remove([2, 6], 0)      = [6]
6466
     * ArrayUtils.remove([2, 6], 1)      = [2]
6467
     * ArrayUtils.remove([2, 6, 3], 1)   = [2, 3]
6468
     * </pre>
6469
     *
6470
     * @param array  the array to remove the element from, may not be {@code null}
6471
     * @param index  the position of the element to be removed
6472
     * @return A new array containing the existing elements except the element
6473
     *         at the specified position.
6474
     * @throws IndexOutOfBoundsException if the index is out of range
6475
     * (index &lt; 0 || index &gt;= array.length), or if the array is {@code null}.
6476
     * @since 2.1
6477
     */
6478
    public static short[] remove(final short[] array, final int index) {
6479 7 1. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return (short[]) remove((Object) array, index);
6480
    }
6481
6482
    /**
6483
     * <p>Removes the first occurrence of the specified element from the
6484
     * specified array. All subsequent elements are shifted to the left
6485
     * (subtracts one from their indices). If the array doesn't contains
6486
     * such an element, no elements are removed from the array.
6487
     *
6488
     * <p>This method returns a new array with the same elements of the input
6489
     * array except the first occurrence of the specified element. The component
6490
     * type of the returned array is always the same as that of the input
6491
     * array.
6492
     *
6493
     * <pre>
6494
     * ArrayUtils.removeElement(null, 1)      = null
6495
     * ArrayUtils.removeElement([], 1)        = []
6496
     * ArrayUtils.removeElement([1], 2)       = [1]
6497
     * ArrayUtils.removeElement([1, 3], 1)    = [3]
6498
     * ArrayUtils.removeElement([1, 3, 1], 1) = [3, 1]
6499
     * </pre>
6500
     *
6501
     * @param array  the array to remove the element from, may be {@code null}
6502
     * @param element  the element to be removed
6503
     * @return A new array containing the existing elements except the first
6504
     *         occurrence of the specified element.
6505
     * @since 2.1
6506
     */
6507
    public static short[] removeElement(final short[] array, final short element) {
6508
        final int index = indexOf(array, element);
6509 7 1. removeElement : negated conditional → NOT_SCHEDULED
2. removeElement : negated conditional → NOT_SCHEDULED
3. removeElement : negated conditional → NOT_SCHEDULED
4. removeElement : negated conditional → NOT_SCHEDULED
5. removeElement : negated conditional → NOT_SCHEDULED
6. removeElement : negated conditional → NOT_SCHEDULED
7. removeElement : negated conditional → NOT_SCHEDULED
        if (index == INDEX_NOT_FOUND) {
6510 7 1. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array);
6511
        }
6512 7 1. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElement : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return remove(array, index);
6513
    }
6514
6515
    /**
6516
     * <p>Removes the element at the specified position from the specified array.
6517
     * All subsequent elements are shifted to the left (subtracts one from
6518
     * their indices).
6519
     *
6520
     * <p>This method returns a new array with the same elements of the input
6521
     * array except the element on the specified position. The component
6522
     * type of the returned array is always the same as that of the input
6523
     * array.
6524
     *
6525
     * <p>If the input array is {@code null}, an IndexOutOfBoundsException
6526
     * will be thrown, because in that case no valid index can be specified.
6527
     *
6528
     * @param array  the array to remove the element from, may not be {@code null}
6529
     * @param index  the position of the element to be removed
6530
     * @return A new array containing the existing elements except the element
6531
     *         at the specified position.
6532
     * @throws IndexOutOfBoundsException if the index is out of range
6533
     * (index &lt; 0 || index &gt;= array.length), or if the array is {@code null}.
6534
     * @since 2.1
6535
     */
6536
    private static Object remove(final Object array, final int index) {
6537
        final int length = getLength(array);
6538 28 1. remove : changed conditional boundary → NOT_SCHEDULED
2. remove : changed conditional boundary → NOT_SCHEDULED
3. remove : negated conditional → NOT_SCHEDULED
4. remove : negated conditional → NOT_SCHEDULED
5. remove : changed conditional boundary → NOT_SCHEDULED
6. remove : changed conditional boundary → NOT_SCHEDULED
7. remove : negated conditional → NOT_SCHEDULED
8. remove : negated conditional → NOT_SCHEDULED
9. remove : changed conditional boundary → NOT_SCHEDULED
10. remove : changed conditional boundary → NOT_SCHEDULED
11. remove : negated conditional → NOT_SCHEDULED
12. remove : negated conditional → NOT_SCHEDULED
13. remove : changed conditional boundary → NOT_SCHEDULED
14. remove : changed conditional boundary → NOT_SCHEDULED
15. remove : negated conditional → NOT_SCHEDULED
16. remove : negated conditional → NOT_SCHEDULED
17. remove : changed conditional boundary → NOT_SCHEDULED
18. remove : negated conditional → NOT_SCHEDULED
19. remove : negated conditional → NOT_SCHEDULED
20. remove : changed conditional boundary → NOT_SCHEDULED
21. remove : negated conditional → NOT_SCHEDULED
22. remove : negated conditional → NOT_SCHEDULED
23. remove : changed conditional boundary → NOT_SCHEDULED
24. remove : negated conditional → NOT_SCHEDULED
25. remove : negated conditional → NOT_SCHEDULED
26. remove : changed conditional boundary → KILLED
27. remove : changed conditional boundary → KILLED
28. remove : changed conditional boundary → KILLED
        if (index < 0 || index >= length) {
6539
            throw new IndexOutOfBoundsException("Index: " + index + ", Length: " + length);
6540
        }
6541
6542 7 1. remove : Replaced integer subtraction with addition → NOT_SCHEDULED
2. remove : Replaced integer subtraction with addition → NOT_SCHEDULED
3. remove : Replaced integer subtraction with addition → NOT_SCHEDULED
4. remove : Replaced integer subtraction with addition → NOT_SCHEDULED
5. remove : Replaced integer subtraction with addition → NOT_SCHEDULED
6. remove : Replaced integer subtraction with addition → NOT_SCHEDULED
7. remove : Replaced integer subtraction with addition → NOT_SCHEDULED
        final Object result = Array.newInstance(array.getClass().getComponentType(), length - 1);
6543 7 1. remove : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
2. remove : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
3. remove : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
4. remove : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
5. remove : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
6. remove : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
7. remove : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
        System.arraycopy(array, 0, result, 0, index);
6544 21 1. remove : changed conditional boundary → NOT_SCHEDULED
2. remove : Replaced integer subtraction with addition → NOT_SCHEDULED
3. remove : negated conditional → NOT_SCHEDULED
4. remove : changed conditional boundary → NOT_SCHEDULED
5. remove : Replaced integer subtraction with addition → NOT_SCHEDULED
6. remove : negated conditional → NOT_SCHEDULED
7. remove : changed conditional boundary → NOT_SCHEDULED
8. remove : Replaced integer subtraction with addition → NOT_SCHEDULED
9. remove : negated conditional → NOT_SCHEDULED
10. remove : changed conditional boundary → NOT_SCHEDULED
11. remove : Replaced integer subtraction with addition → NOT_SCHEDULED
12. remove : negated conditional → NOT_SCHEDULED
13. remove : changed conditional boundary → NOT_SCHEDULED
14. remove : Replaced integer subtraction with addition → NOT_SCHEDULED
15. remove : negated conditional → NOT_SCHEDULED
16. remove : changed conditional boundary → NOT_SCHEDULED
17. remove : Replaced integer subtraction with addition → NOT_SCHEDULED
18. remove : negated conditional → NOT_SCHEDULED
19. remove : changed conditional boundary → NOT_SCHEDULED
20. remove : Replaced integer subtraction with addition → NOT_SCHEDULED
21. remove : negated conditional → NOT_SCHEDULED
        if (index < length - 1) {
6545 28 1. remove : Replaced integer addition with subtraction → NOT_SCHEDULED
2. remove : Replaced integer subtraction with addition → NOT_SCHEDULED
3. remove : Replaced integer subtraction with addition → NOT_SCHEDULED
4. remove : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
5. remove : Replaced integer addition with subtraction → NOT_SCHEDULED
6. remove : Replaced integer subtraction with addition → NOT_SCHEDULED
7. remove : Replaced integer subtraction with addition → NOT_SCHEDULED
8. remove : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
9. remove : Replaced integer addition with subtraction → NOT_SCHEDULED
10. remove : Replaced integer subtraction with addition → NOT_SCHEDULED
11. remove : Replaced integer subtraction with addition → NOT_SCHEDULED
12. remove : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
13. remove : Replaced integer addition with subtraction → NOT_SCHEDULED
14. remove : Replaced integer subtraction with addition → NOT_SCHEDULED
15. remove : Replaced integer subtraction with addition → NOT_SCHEDULED
16. remove : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
17. remove : Replaced integer addition with subtraction → NOT_SCHEDULED
18. remove : Replaced integer subtraction with addition → NOT_SCHEDULED
19. remove : Replaced integer subtraction with addition → NOT_SCHEDULED
20. remove : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
21. remove : Replaced integer addition with subtraction → NOT_SCHEDULED
22. remove : Replaced integer subtraction with addition → NOT_SCHEDULED
23. remove : Replaced integer subtraction with addition → NOT_SCHEDULED
24. remove : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
25. remove : Replaced integer addition with subtraction → NOT_SCHEDULED
26. remove : Replaced integer subtraction with addition → NOT_SCHEDULED
27. remove : Replaced integer subtraction with addition → NOT_SCHEDULED
28. remove : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
            System.arraycopy(array, index + 1, result, index, length - index - 1);
6546
        }
6547
6548 7 1. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. remove : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return result;
6549
    }
6550
6551
    /**
6552
     * <p>Removes the elements at the specified positions from the specified array.
6553
     * All remaining elements are shifted to the left.
6554
     *
6555
     * <p>This method returns a new array with the same elements of the input
6556
     * array except those at the specified positions. The component
6557
     * type of the returned array is always the same as that of the input
6558
     * array.
6559
     *
6560
     * <p>If the input array is {@code null}, an IndexOutOfBoundsException
6561
     * will be thrown, because in that case no valid index can be specified.
6562
     *
6563
     * <pre>
6564
     * ArrayUtils.removeAll(["a", "b", "c"], 0, 2) = ["b"]
6565
     * ArrayUtils.removeAll(["a", "b", "c"], 1, 2) = ["a"]
6566
     * </pre>
6567
     *
6568
     * @param <T> the component type of the array
6569
     * @param array   the array to remove the element from, may not be {@code null}
6570
     * @param indices the positions of the elements to be removed
6571
     * @return A new array containing the existing elements except those
6572
     *         at the specified positions.
6573
     * @throws IndexOutOfBoundsException if any index is out of range
6574
     * (index &lt; 0 || index &gt;= array.length), or if the array is {@code null}.
6575
     * @since 3.0.1
6576
     */
6577
    @SuppressWarnings("unchecked") // removeAll() always creates an array of the same type as its input
6578
    public static <T> T[] removeAll(final T[] array, final int... indices) {
6579 7 1. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return (T[]) removeAll((Object) array, indices);
6580
    }
6581
6582
    /**
6583
     * <p>Removes occurrences of specified elements, in specified quantities,
6584
     * from the specified array. All subsequent elements are shifted left.
6585
     * For any element-to-be-removed specified in greater quantities than
6586
     * contained in the original array, no change occurs beyond the
6587
     * removal of the existing matching items.
6588
     *
6589
     * <p>This method returns a new array with the same elements of the input
6590
     * array except for the earliest-encountered occurrences of the specified
6591
     * elements. The component type of the returned array is always the same
6592
     * as that of the input array.
6593
     *
6594
     * <pre>
6595
     * ArrayUtils.removeElements(null, "a", "b")            = null
6596
     * ArrayUtils.removeElements([], "a", "b")              = []
6597
     * ArrayUtils.removeElements(["a"], "b", "c")           = ["a"]
6598
     * ArrayUtils.removeElements(["a", "b"], "a", "c")      = ["b"]
6599
     * ArrayUtils.removeElements(["a", "b", "a"], "a")      = ["b", "a"]
6600
     * ArrayUtils.removeElements(["a", "b", "a"], "a", "a") = ["b"]
6601
     * </pre>
6602
     *
6603
     * @param <T> the component type of the array
6604
     * @param array  the array to remove the element from, may be {@code null}
6605
     * @param values the elements to be removed
6606
     * @return A new array containing the existing elements except the
6607
     *         earliest-encountered occurrences of the specified elements.
6608
     * @since 3.0.1
6609
     */
6610
    public static <T> T[] removeElements(final T[] array, final T... values) {
6611 14 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
8. removeElements : negated conditional → NOT_SCHEDULED
9. removeElements : negated conditional → NOT_SCHEDULED
10. removeElements : negated conditional → NOT_SCHEDULED
11. removeElements : negated conditional → NOT_SCHEDULED
12. removeElements : negated conditional → NOT_SCHEDULED
13. removeElements : negated conditional → NOT_SCHEDULED
14. removeElements : negated conditional → NOT_SCHEDULED
        if (isEmpty(array) || isEmpty(values)) {
6612 7 1. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array);
6613
        }
6614
        final HashMap<T, MutableInt> occurrences = new HashMap<T, MutableInt>(values.length);
6615 21 1. removeElements : changed conditional boundary → NOT_SCHEDULED
2. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : changed conditional boundary → NOT_SCHEDULED
5. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : changed conditional boundary → NOT_SCHEDULED
8. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
9. removeElements : negated conditional → NOT_SCHEDULED
10. removeElements : changed conditional boundary → NOT_SCHEDULED
11. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
12. removeElements : negated conditional → NOT_SCHEDULED
13. removeElements : changed conditional boundary → NOT_SCHEDULED
14. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
15. removeElements : negated conditional → NOT_SCHEDULED
16. removeElements : changed conditional boundary → NOT_SCHEDULED
17. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
18. removeElements : negated conditional → NOT_SCHEDULED
19. removeElements : changed conditional boundary → NOT_SCHEDULED
20. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
21. removeElements : negated conditional → NOT_SCHEDULED
        for (final T v : values) {
6616
            final MutableInt count = occurrences.get(v);
6617 7 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
            if (count == null) {
6618
                occurrences.put(v, new MutableInt(1));
6619
            } else {
6620 7 1. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
2. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
3. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
4. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
5. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
6. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
7. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
                count.increment();
6621
            }
6622
        }
6623
        final BitSet toRemove = new BitSet();
6624 21 1. removeElements : changed conditional boundary → NOT_SCHEDULED
2. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : changed conditional boundary → NOT_SCHEDULED
5. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : changed conditional boundary → NOT_SCHEDULED
8. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
9. removeElements : negated conditional → NOT_SCHEDULED
10. removeElements : changed conditional boundary → NOT_SCHEDULED
11. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
12. removeElements : negated conditional → NOT_SCHEDULED
13. removeElements : changed conditional boundary → NOT_SCHEDULED
14. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
15. removeElements : negated conditional → NOT_SCHEDULED
16. removeElements : changed conditional boundary → NOT_SCHEDULED
17. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
18. removeElements : negated conditional → NOT_SCHEDULED
19. removeElements : changed conditional boundary → NOT_SCHEDULED
20. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
21. removeElements : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < array.length; i++) {
6625
            final T key = array[i];
6626
            final MutableInt count = occurrences.get(key);
6627 7 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
            if (count != null) {
6628 7 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
                if (count.decrementAndGet() == 0) {
6629
                    occurrences.remove(key);
6630
                }
6631 7 1. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
2. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
3. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
4. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
5. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
6. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
7. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
                toRemove.set(i);
6632
            }
6633
        }
6634
        @SuppressWarnings("unchecked") // removeAll() always creates an array of the same type as its input
6635
        final
6636
        T[] result = (T[]) removeAll(array, toRemove);
6637 7 1. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return result;
6638
    }
6639
6640
    /**
6641
     * <p>Removes the elements at the specified positions from the specified array.
6642
     * All remaining elements are shifted to the left.
6643
     *
6644
     * <p>This method returns a new array with the same elements of the input
6645
     * array except those at the specified positions. The component
6646
     * type of the returned array is always the same as that of the input
6647
     * array.
6648
     *
6649
     * <p>If the input array is {@code null}, an IndexOutOfBoundsException
6650
     * will be thrown, because in that case no valid index can be specified.
6651
     *
6652
     * <pre>
6653
     * ArrayUtils.removeAll([1], 0)             = []
6654
     * ArrayUtils.removeAll([2, 6], 0)          = [6]
6655
     * ArrayUtils.removeAll([2, 6], 0, 1)       = []
6656
     * ArrayUtils.removeAll([2, 6, 3], 1, 2)    = [2]
6657
     * ArrayUtils.removeAll([2, 6, 3], 0, 2)    = [6]
6658
     * ArrayUtils.removeAll([2, 6, 3], 0, 1, 2) = []
6659
     * </pre>
6660
     *
6661
     * @param array   the array to remove the element from, may not be {@code null}
6662
     * @param indices the positions of the elements to be removed
6663
     * @return A new array containing the existing elements except those
6664
     *         at the specified positions.
6665
     * @throws IndexOutOfBoundsException if any index is out of range
6666
     * (index &lt; 0 || index &gt;= array.length), or if the array is {@code null}.
6667
     * @since 3.0.1
6668
     */
6669
    public static byte[] removeAll(final byte[] array, final int... indices) {
6670 7 1. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return (byte[]) removeAll((Object) array, indices);
6671
    }
6672
6673
    /**
6674
     * <p>Removes occurrences of specified elements, in specified quantities,
6675
     * from the specified array. All subsequent elements are shifted left.
6676
     * For any element-to-be-removed specified in greater quantities than
6677
     * contained in the original array, no change occurs beyond the
6678
     * removal of the existing matching items.
6679
     *
6680
     * <p>This method returns a new array with the same elements of the input
6681
     * array except for the earliest-encountered occurrences of the specified
6682
     * elements. The component type of the returned array is always the same
6683
     * as that of the input array.
6684
     *
6685
     * <pre>
6686
     * ArrayUtils.removeElements(null, 1, 2)      = null
6687
     * ArrayUtils.removeElements([], 1, 2)        = []
6688
     * ArrayUtils.removeElements([1], 2, 3)       = [1]
6689
     * ArrayUtils.removeElements([1, 3], 1, 2)    = [3]
6690
     * ArrayUtils.removeElements([1, 3, 1], 1)    = [3, 1]
6691
     * ArrayUtils.removeElements([1, 3, 1], 1, 1) = [3]
6692
     * </pre>
6693
     *
6694
     * @param array  the array to remove the element from, may be {@code null}
6695
     * @param values the elements to be removed
6696
     * @return A new array containing the existing elements except the
6697
     *         earliest-encountered occurrences of the specified elements.
6698
     * @since 3.0.1
6699
     */
6700
    public static byte[] removeElements(final byte[] array, final byte... values) {
6701 14 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
8. removeElements : negated conditional → NOT_SCHEDULED
9. removeElements : negated conditional → NOT_SCHEDULED
10. removeElements : negated conditional → NOT_SCHEDULED
11. removeElements : negated conditional → NOT_SCHEDULED
12. removeElements : negated conditional → NOT_SCHEDULED
13. removeElements : negated conditional → NOT_SCHEDULED
14. removeElements : negated conditional → NOT_SCHEDULED
        if (isEmpty(array) || isEmpty(values)) {
6702 7 1. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array);
6703
        }
6704
        final Map<Byte, MutableInt> occurrences = new HashMap<Byte, MutableInt>(values.length);
6705 21 1. removeElements : changed conditional boundary → NOT_SCHEDULED
2. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : changed conditional boundary → NOT_SCHEDULED
5. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : changed conditional boundary → NOT_SCHEDULED
8. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
9. removeElements : negated conditional → NOT_SCHEDULED
10. removeElements : changed conditional boundary → NOT_SCHEDULED
11. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
12. removeElements : negated conditional → NOT_SCHEDULED
13. removeElements : changed conditional boundary → NOT_SCHEDULED
14. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
15. removeElements : negated conditional → NOT_SCHEDULED
16. removeElements : changed conditional boundary → NOT_SCHEDULED
17. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
18. removeElements : negated conditional → NOT_SCHEDULED
19. removeElements : changed conditional boundary → NOT_SCHEDULED
20. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
21. removeElements : negated conditional → NOT_SCHEDULED
        for (final byte v : values) {
6706
            final Byte boxed = Byte.valueOf(v);
6707
            final MutableInt count = occurrences.get(boxed);
6708 7 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
            if (count == null) {
6709
                occurrences.put(boxed, new MutableInt(1));
6710
            } else {
6711 7 1. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
2. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
3. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
4. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
5. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
6. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
7. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
                count.increment();
6712
            }
6713
        }
6714
        final BitSet toRemove = new BitSet();
6715 21 1. removeElements : changed conditional boundary → NOT_SCHEDULED
2. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : changed conditional boundary → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : changed conditional boundary → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
8. removeElements : negated conditional → NOT_SCHEDULED
9. removeElements : negated conditional → NOT_SCHEDULED
10. removeElements : negated conditional → NOT_SCHEDULED
11. removeElements : negated conditional → NOT_SCHEDULED
12. removeElements : Changed increment from 1 to -1 → KILLED
13. removeElements : Changed increment from 1 to -1 → KILLED
14. removeElements : changed conditional boundary → KILLED
15. removeElements : Changed increment from 1 to -1 → KILLED
16. removeElements : changed conditional boundary → KILLED
17. removeElements : Changed increment from 1 to -1 → KILLED
18. removeElements : changed conditional boundary → KILLED
19. removeElements : Changed increment from 1 to -1 → KILLED
20. removeElements : changed conditional boundary → KILLED
21. removeElements : Changed increment from 1 to -1 → KILLED
        for (int i = 0; i < array.length; i++) {
6716
            final byte key = array[i];
6717
            final MutableInt count = occurrences.get(key);
6718 7 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
            if (count != null) {
6719 7 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
                if (count.decrementAndGet() == 0) {
6720
                    occurrences.remove(key);
6721
                }
6722 7 1. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
2. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
3. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
4. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
5. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
6. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
7. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
                toRemove.set(i);
6723
            }
6724
        }
6725 7 1. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return (byte[]) removeAll(array, toRemove);
6726
    }
6727
6728
    /**
6729
     * <p>Removes the elements at the specified positions from the specified array.
6730
     * All remaining elements are shifted to the left.
6731
     *
6732
     * <p>This method returns a new array with the same elements of the input
6733
     * array except those at the specified positions. The component
6734
     * type of the returned array is always the same as that of the input
6735
     * array.
6736
     *
6737
     * <p>If the input array is {@code null}, an IndexOutOfBoundsException
6738
     * will be thrown, because in that case no valid index can be specified.
6739
     *
6740
     * <pre>
6741
     * ArrayUtils.removeAll([1], 0)             = []
6742
     * ArrayUtils.removeAll([2, 6], 0)          = [6]
6743
     * ArrayUtils.removeAll([2, 6], 0, 1)       = []
6744
     * ArrayUtils.removeAll([2, 6, 3], 1, 2)    = [2]
6745
     * ArrayUtils.removeAll([2, 6, 3], 0, 2)    = [6]
6746
     * ArrayUtils.removeAll([2, 6, 3], 0, 1, 2) = []
6747
     * </pre>
6748
     *
6749
     * @param array   the array to remove the element from, may not be {@code null}
6750
     * @param indices the positions of the elements to be removed
6751
     * @return A new array containing the existing elements except those
6752
     *         at the specified positions.
6753
     * @throws IndexOutOfBoundsException if any index is out of range
6754
     * (index &lt; 0 || index &gt;= array.length), or if the array is {@code null}.
6755
     * @since 3.0.1
6756
     */
6757
    public static short[] removeAll(final short[] array, final int... indices) {
6758 7 1. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return (short[]) removeAll((Object) array, indices);
6759
    }
6760
6761
    /**
6762
     * <p>Removes occurrences of specified elements, in specified quantities,
6763
     * from the specified array. All subsequent elements are shifted left.
6764
     * For any element-to-be-removed specified in greater quantities than
6765
     * contained in the original array, no change occurs beyond the
6766
     * removal of the existing matching items.
6767
     *
6768
     * <p>This method returns a new array with the same elements of the input
6769
     * array except for the earliest-encountered occurrences of the specified
6770
     * elements. The component type of the returned array is always the same
6771
     * as that of the input array.
6772
     *
6773
     * <pre>
6774
     * ArrayUtils.removeElements(null, 1, 2)      = null
6775
     * ArrayUtils.removeElements([], 1, 2)        = []
6776
     * ArrayUtils.removeElements([1], 2, 3)       = [1]
6777
     * ArrayUtils.removeElements([1, 3], 1, 2)    = [3]
6778
     * ArrayUtils.removeElements([1, 3, 1], 1)    = [3, 1]
6779
     * ArrayUtils.removeElements([1, 3, 1], 1, 1) = [3]
6780
     * </pre>
6781
     *
6782
     * @param array  the array to remove the element from, may be {@code null}
6783
     * @param values the elements to be removed
6784
     * @return A new array containing the existing elements except the
6785
     *         earliest-encountered occurrences of the specified elements.
6786
     * @since 3.0.1
6787
     */
6788
    public static short[] removeElements(final short[] array, final short... values) {
6789 14 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
8. removeElements : negated conditional → NOT_SCHEDULED
9. removeElements : negated conditional → NOT_SCHEDULED
10. removeElements : negated conditional → NOT_SCHEDULED
11. removeElements : negated conditional → NOT_SCHEDULED
12. removeElements : negated conditional → NOT_SCHEDULED
13. removeElements : negated conditional → NOT_SCHEDULED
14. removeElements : negated conditional → NOT_SCHEDULED
        if (isEmpty(array) || isEmpty(values)) {
6790 7 1. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array);
6791
        }
6792
        final HashMap<Short, MutableInt> occurrences = new HashMap<Short, MutableInt>(values.length);
6793 21 1. removeElements : changed conditional boundary → NOT_SCHEDULED
2. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : changed conditional boundary → NOT_SCHEDULED
5. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : changed conditional boundary → NOT_SCHEDULED
8. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
9. removeElements : negated conditional → NOT_SCHEDULED
10. removeElements : changed conditional boundary → NOT_SCHEDULED
11. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
12. removeElements : negated conditional → NOT_SCHEDULED
13. removeElements : changed conditional boundary → NOT_SCHEDULED
14. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
15. removeElements : negated conditional → NOT_SCHEDULED
16. removeElements : changed conditional boundary → NOT_SCHEDULED
17. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
18. removeElements : negated conditional → NOT_SCHEDULED
19. removeElements : changed conditional boundary → NOT_SCHEDULED
20. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
21. removeElements : negated conditional → NOT_SCHEDULED
        for (final short v : values) {
6794
            final Short boxed = Short.valueOf(v);
6795
            final MutableInt count = occurrences.get(boxed);
6796 7 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
            if (count == null) {
6797
                occurrences.put(boxed, new MutableInt(1));
6798
            } else {
6799 7 1. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
2. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
3. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
4. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
5. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
6. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
7. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
                count.increment();
6800
            }
6801
        }
6802
        final BitSet toRemove = new BitSet();
6803 21 1. removeElements : changed conditional boundary → NOT_SCHEDULED
2. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : changed conditional boundary → NOT_SCHEDULED
5. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : changed conditional boundary → NOT_SCHEDULED
8. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
9. removeElements : negated conditional → NOT_SCHEDULED
10. removeElements : changed conditional boundary → NOT_SCHEDULED
11. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
12. removeElements : negated conditional → NOT_SCHEDULED
13. removeElements : changed conditional boundary → NOT_SCHEDULED
14. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
15. removeElements : negated conditional → NOT_SCHEDULED
16. removeElements : changed conditional boundary → NOT_SCHEDULED
17. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
18. removeElements : negated conditional → NOT_SCHEDULED
19. removeElements : changed conditional boundary → NOT_SCHEDULED
20. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
21. removeElements : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < array.length; i++) {
6804
            final short key = array[i];
6805
            final MutableInt count = occurrences.get(key);
6806 7 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
            if (count != null) {
6807 7 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
                if (count.decrementAndGet() == 0) {
6808
                    occurrences.remove(key);
6809
                }
6810 7 1. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
2. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
3. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
4. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
5. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
6. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
7. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
                toRemove.set(i);
6811
            }
6812
        }
6813 7 1. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return (short[]) removeAll(array, toRemove);
6814
    }
6815
6816
    /**
6817
     * <p>Removes the elements at the specified positions from the specified array.
6818
     * All remaining elements are shifted to the left.
6819
     *
6820
     * <p>This method returns a new array with the same elements of the input
6821
     * array except those at the specified positions. The component
6822
     * type of the returned array is always the same as that of the input
6823
     * array.
6824
     *
6825
     * <p>If the input array is {@code null}, an IndexOutOfBoundsException
6826
     * will be thrown, because in that case no valid index can be specified.
6827
     *
6828
     * <pre>
6829
     * ArrayUtils.removeAll([1], 0)             = []
6830
     * ArrayUtils.removeAll([2, 6], 0)          = [6]
6831
     * ArrayUtils.removeAll([2, 6], 0, 1)       = []
6832
     * ArrayUtils.removeAll([2, 6, 3], 1, 2)    = [2]
6833
     * ArrayUtils.removeAll([2, 6, 3], 0, 2)    = [6]
6834
     * ArrayUtils.removeAll([2, 6, 3], 0, 1, 2) = []
6835
     * </pre>
6836
     *
6837
     * @param array   the array to remove the element from, may not be {@code null}
6838
     * @param indices the positions of the elements to be removed
6839
     * @return A new array containing the existing elements except those
6840
     *         at the specified positions.
6841
     * @throws IndexOutOfBoundsException if any index is out of range
6842
     * (index &lt; 0 || index &gt;= array.length), or if the array is {@code null}.
6843
     * @since 3.0.1
6844
     */
6845
    public static int[] removeAll(final int[] array, final int... indices) {
6846 7 1. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return (int[]) removeAll((Object) array, indices);
6847
    }
6848
6849
    /**
6850
     * <p>Removes occurrences of specified elements, in specified quantities,
6851
     * from the specified array. All subsequent elements are shifted left.
6852
     * For any element-to-be-removed specified in greater quantities than
6853
     * contained in the original array, no change occurs beyond the
6854
     * removal of the existing matching items.
6855
     *
6856
     * <p>This method returns a new array with the same elements of the input
6857
     * array except for the earliest-encountered occurrences of the specified
6858
     * elements. The component type of the returned array is always the same
6859
     * as that of the input array.
6860
     *
6861
     * <pre>
6862
     * ArrayUtils.removeElements(null, 1, 2)      = null
6863
     * ArrayUtils.removeElements([], 1, 2)        = []
6864
     * ArrayUtils.removeElements([1], 2, 3)       = [1]
6865
     * ArrayUtils.removeElements([1, 3], 1, 2)    = [3]
6866
     * ArrayUtils.removeElements([1, 3, 1], 1)    = [3, 1]
6867
     * ArrayUtils.removeElements([1, 3, 1], 1, 1) = [3]
6868
     * </pre>
6869
     *
6870
     * @param array  the array to remove the element from, may be {@code null}
6871
     * @param values the elements to be removed
6872
     * @return A new array containing the existing elements except the
6873
     *         earliest-encountered occurrences of the specified elements.
6874
     * @since 3.0.1
6875
     */
6876
    public static int[] removeElements(final int[] array, final int... values) {
6877 14 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
8. removeElements : negated conditional → NOT_SCHEDULED
9. removeElements : negated conditional → NOT_SCHEDULED
10. removeElements : negated conditional → NOT_SCHEDULED
11. removeElements : negated conditional → NOT_SCHEDULED
12. removeElements : negated conditional → NOT_SCHEDULED
13. removeElements : negated conditional → NOT_SCHEDULED
14. removeElements : negated conditional → NOT_SCHEDULED
        if (isEmpty(array) || isEmpty(values)) {
6878 7 1. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array);
6879
        }
6880
        final HashMap<Integer, MutableInt> occurrences = new HashMap<Integer, MutableInt>(values.length);
6881 21 1. removeElements : changed conditional boundary → NOT_SCHEDULED
2. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : changed conditional boundary → NOT_SCHEDULED
5. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : changed conditional boundary → NOT_SCHEDULED
8. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
9. removeElements : negated conditional → NOT_SCHEDULED
10. removeElements : changed conditional boundary → NOT_SCHEDULED
11. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
12. removeElements : negated conditional → NOT_SCHEDULED
13. removeElements : changed conditional boundary → NOT_SCHEDULED
14. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
15. removeElements : negated conditional → NOT_SCHEDULED
16. removeElements : changed conditional boundary → NOT_SCHEDULED
17. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
18. removeElements : negated conditional → NOT_SCHEDULED
19. removeElements : changed conditional boundary → NOT_SCHEDULED
20. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
21. removeElements : negated conditional → NOT_SCHEDULED
        for (final int v : values) {
6882
            final Integer boxed = Integer.valueOf(v);
6883
            final MutableInt count = occurrences.get(boxed);
6884 7 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
            if (count == null) {
6885
                occurrences.put(boxed, new MutableInt(1));
6886
            } else {
6887 7 1. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
2. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
3. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
4. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
5. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
6. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
7. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
                count.increment();
6888
            }
6889
        }
6890
        final BitSet toRemove = new BitSet();
6891 21 1. removeElements : changed conditional boundary → NOT_SCHEDULED
2. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : changed conditional boundary → NOT_SCHEDULED
5. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : changed conditional boundary → NOT_SCHEDULED
8. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
9. removeElements : negated conditional → NOT_SCHEDULED
10. removeElements : changed conditional boundary → NOT_SCHEDULED
11. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
12. removeElements : negated conditional → NOT_SCHEDULED
13. removeElements : changed conditional boundary → NOT_SCHEDULED
14. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
15. removeElements : negated conditional → NOT_SCHEDULED
16. removeElements : changed conditional boundary → NOT_SCHEDULED
17. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
18. removeElements : negated conditional → NOT_SCHEDULED
19. removeElements : changed conditional boundary → NOT_SCHEDULED
20. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
21. removeElements : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < array.length; i++) {
6892
            final int key = array[i];
6893
            final MutableInt count = occurrences.get(key);
6894 7 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
            if (count != null) {
6895 7 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
                if (count.decrementAndGet() == 0) {
6896
                    occurrences.remove(key);
6897
                }
6898 7 1. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
2. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
3. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
4. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
5. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
6. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
7. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
                toRemove.set(i);
6899
            }
6900
        }
6901 7 1. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return (int[]) removeAll(array, toRemove);
6902
    }
6903
6904
    /**
6905
     * <p>Removes the elements at the specified positions from the specified array.
6906
     * All remaining elements are shifted to the left.
6907
     *
6908
     * <p>This method returns a new array with the same elements of the input
6909
     * array except those at the specified positions. The component
6910
     * type of the returned array is always the same as that of the input
6911
     * array.
6912
     *
6913
     * <p>If the input array is {@code null}, an IndexOutOfBoundsException
6914
     * will be thrown, because in that case no valid index can be specified.
6915
     *
6916
     * <pre>
6917
     * ArrayUtils.removeAll([1], 0)             = []
6918
     * ArrayUtils.removeAll([2, 6], 0)          = [6]
6919
     * ArrayUtils.removeAll([2, 6], 0, 1)       = []
6920
     * ArrayUtils.removeAll([2, 6, 3], 1, 2)    = [2]
6921
     * ArrayUtils.removeAll([2, 6, 3], 0, 2)    = [6]
6922
     * ArrayUtils.removeAll([2, 6, 3], 0, 1, 2) = []
6923
     * </pre>
6924
     *
6925
     * @param array   the array to remove the element from, may not be {@code null}
6926
     * @param indices the positions of the elements to be removed
6927
     * @return A new array containing the existing elements except those
6928
     *         at the specified positions.
6929
     * @throws IndexOutOfBoundsException if any index is out of range
6930
     * (index &lt; 0 || index &gt;= array.length), or if the array is {@code null}.
6931
     * @since 3.0.1
6932
     */
6933
    public static char[] removeAll(final char[] array, final int... indices) {
6934 7 1. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return (char[]) removeAll((Object) array, indices);
6935
    }
6936
6937
    /**
6938
     * <p>Removes occurrences of specified elements, in specified quantities,
6939
     * from the specified array. All subsequent elements are shifted left.
6940
     * For any element-to-be-removed specified in greater quantities than
6941
     * contained in the original array, no change occurs beyond the
6942
     * removal of the existing matching items.
6943
     *
6944
     * <p>This method returns a new array with the same elements of the input
6945
     * array except for the earliest-encountered occurrences of the specified
6946
     * elements. The component type of the returned array is always the same
6947
     * as that of the input array.
6948
     *
6949
     * <pre>
6950
     * ArrayUtils.removeElements(null, 1, 2)      = null
6951
     * ArrayUtils.removeElements([], 1, 2)        = []
6952
     * ArrayUtils.removeElements([1], 2, 3)       = [1]
6953
     * ArrayUtils.removeElements([1, 3], 1, 2)    = [3]
6954
     * ArrayUtils.removeElements([1, 3, 1], 1)    = [3, 1]
6955
     * ArrayUtils.removeElements([1, 3, 1], 1, 1) = [3]
6956
     * </pre>
6957
     *
6958
     * @param array  the array to remove the element from, may be {@code null}
6959
     * @param values the elements to be removed
6960
     * @return A new array containing the existing elements except the
6961
     *         earliest-encountered occurrences of the specified elements.
6962
     * @since 3.0.1
6963
     */
6964
    public static char[] removeElements(final char[] array, final char... values) {
6965 14 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
8. removeElements : negated conditional → NOT_SCHEDULED
9. removeElements : negated conditional → NOT_SCHEDULED
10. removeElements : negated conditional → NOT_SCHEDULED
11. removeElements : negated conditional → NOT_SCHEDULED
12. removeElements : negated conditional → NOT_SCHEDULED
13. removeElements : negated conditional → NOT_SCHEDULED
14. removeElements : negated conditional → NOT_SCHEDULED
        if (isEmpty(array) || isEmpty(values)) {
6966 7 1. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array);
6967
        }
6968
        final HashMap<Character, MutableInt> occurrences = new HashMap<Character, MutableInt>(values.length);
6969 21 1. removeElements : changed conditional boundary → NOT_SCHEDULED
2. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : changed conditional boundary → NOT_SCHEDULED
5. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : changed conditional boundary → NOT_SCHEDULED
8. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
9. removeElements : negated conditional → NOT_SCHEDULED
10. removeElements : changed conditional boundary → NOT_SCHEDULED
11. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
12. removeElements : negated conditional → NOT_SCHEDULED
13. removeElements : changed conditional boundary → NOT_SCHEDULED
14. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
15. removeElements : negated conditional → NOT_SCHEDULED
16. removeElements : changed conditional boundary → NOT_SCHEDULED
17. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
18. removeElements : negated conditional → NOT_SCHEDULED
19. removeElements : changed conditional boundary → NOT_SCHEDULED
20. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
21. removeElements : negated conditional → NOT_SCHEDULED
        for (final char v : values) {
6970
            final Character boxed = Character.valueOf(v);
6971
            final MutableInt count = occurrences.get(boxed);
6972 7 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
            if (count == null) {
6973
                occurrences.put(boxed, new MutableInt(1));
6974
            } else {
6975 7 1. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
2. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
3. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
4. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
5. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
6. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
7. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
                count.increment();
6976
            }
6977
        }
6978
        final BitSet toRemove = new BitSet();
6979 21 1. removeElements : changed conditional boundary → NOT_SCHEDULED
2. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : changed conditional boundary → NOT_SCHEDULED
5. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : changed conditional boundary → NOT_SCHEDULED
8. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
9. removeElements : negated conditional → NOT_SCHEDULED
10. removeElements : changed conditional boundary → NOT_SCHEDULED
11. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
12. removeElements : negated conditional → NOT_SCHEDULED
13. removeElements : changed conditional boundary → NOT_SCHEDULED
14. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
15. removeElements : negated conditional → NOT_SCHEDULED
16. removeElements : changed conditional boundary → NOT_SCHEDULED
17. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
18. removeElements : negated conditional → NOT_SCHEDULED
19. removeElements : changed conditional boundary → NOT_SCHEDULED
20. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
21. removeElements : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < array.length; i++) {
6980
            final char key = array[i];
6981
            final MutableInt count = occurrences.get(key);
6982 7 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
            if (count != null) {
6983 7 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
                if (count.decrementAndGet() == 0) {
6984
                    occurrences.remove(key);
6985
                }
6986 7 1. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
2. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
3. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
4. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
5. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
6. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
7. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
                toRemove.set(i);
6987
            }
6988
        }
6989 7 1. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return (char[]) removeAll(array, toRemove);
6990
    }
6991
6992
    /**
6993
     * <p>Removes the elements at the specified positions from the specified array.
6994
     * All remaining elements are shifted to the left.
6995
     *
6996
     * <p>This method returns a new array with the same elements of the input
6997
     * array except those at the specified positions. The component
6998
     * type of the returned array is always the same as that of the input
6999
     * array.
7000
     *
7001
     * <p>If the input array is {@code null}, an IndexOutOfBoundsException
7002
     * will be thrown, because in that case no valid index can be specified.
7003
     *
7004
     * <pre>
7005
     * ArrayUtils.removeAll([1], 0)             = []
7006
     * ArrayUtils.removeAll([2, 6], 0)          = [6]
7007
     * ArrayUtils.removeAll([2, 6], 0, 1)       = []
7008
     * ArrayUtils.removeAll([2, 6, 3], 1, 2)    = [2]
7009
     * ArrayUtils.removeAll([2, 6, 3], 0, 2)    = [6]
7010
     * ArrayUtils.removeAll([2, 6, 3], 0, 1, 2) = []
7011
     * </pre>
7012
     *
7013
     * @param array   the array to remove the element from, may not be {@code null}
7014
     * @param indices the positions of the elements to be removed
7015
     * @return A new array containing the existing elements except those
7016
     *         at the specified positions.
7017
     * @throws IndexOutOfBoundsException if any index is out of range
7018
     * (index &lt; 0 || index &gt;= array.length), or if the array is {@code null}.
7019
     * @since 3.0.1
7020
     */
7021
    public static long[] removeAll(final long[] array, final int... indices) {
7022 7 1. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return (long[]) removeAll((Object) array, indices);
7023
    }
7024
7025
    /**
7026
     * <p>Removes occurrences of specified elements, in specified quantities,
7027
     * from the specified array. All subsequent elements are shifted left.
7028
     * For any element-to-be-removed specified in greater quantities than
7029
     * contained in the original array, no change occurs beyond the
7030
     * removal of the existing matching items.
7031
     *
7032
     * <p>This method returns a new array with the same elements of the input
7033
     * array except for the earliest-encountered occurrences of the specified
7034
     * elements. The component type of the returned array is always the same
7035
     * as that of the input array.
7036
     *
7037
     * <pre>
7038
     * ArrayUtils.removeElements(null, 1, 2)      = null
7039
     * ArrayUtils.removeElements([], 1, 2)        = []
7040
     * ArrayUtils.removeElements([1], 2, 3)       = [1]
7041
     * ArrayUtils.removeElements([1, 3], 1, 2)    = [3]
7042
     * ArrayUtils.removeElements([1, 3, 1], 1)    = [3, 1]
7043
     * ArrayUtils.removeElements([1, 3, 1], 1, 1) = [3]
7044
     * </pre>
7045
     *
7046
     * @param array  the array to remove the element from, may be {@code null}
7047
     * @param values the elements to be removed
7048
     * @return A new array containing the existing elements except the
7049
     *         earliest-encountered occurrences of the specified elements.
7050
     * @since 3.0.1
7051
     */
7052
    public static long[] removeElements(final long[] array, final long... values) {
7053 14 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
8. removeElements : negated conditional → NOT_SCHEDULED
9. removeElements : negated conditional → NOT_SCHEDULED
10. removeElements : negated conditional → NOT_SCHEDULED
11. removeElements : negated conditional → NOT_SCHEDULED
12. removeElements : negated conditional → NOT_SCHEDULED
13. removeElements : negated conditional → NOT_SCHEDULED
14. removeElements : negated conditional → NOT_SCHEDULED
        if (isEmpty(array) || isEmpty(values)) {
7054 7 1. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array);
7055
        }
7056
        final HashMap<Long, MutableInt> occurrences = new HashMap<Long, MutableInt>(values.length);
7057 21 1. removeElements : changed conditional boundary → NOT_SCHEDULED
2. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : changed conditional boundary → NOT_SCHEDULED
5. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : changed conditional boundary → NOT_SCHEDULED
8. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
9. removeElements : negated conditional → NOT_SCHEDULED
10. removeElements : changed conditional boundary → NOT_SCHEDULED
11. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
12. removeElements : negated conditional → NOT_SCHEDULED
13. removeElements : changed conditional boundary → NOT_SCHEDULED
14. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
15. removeElements : negated conditional → NOT_SCHEDULED
16. removeElements : changed conditional boundary → NOT_SCHEDULED
17. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
18. removeElements : negated conditional → NOT_SCHEDULED
19. removeElements : changed conditional boundary → NOT_SCHEDULED
20. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
21. removeElements : negated conditional → NOT_SCHEDULED
        for (final long v : values) {
7058
            final Long boxed = Long.valueOf(v);
7059
            final MutableInt count = occurrences.get(boxed);
7060 7 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
            if (count == null) {
7061
                occurrences.put(boxed, new MutableInt(1));
7062
            } else {
7063 7 1. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
2. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
3. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
4. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
5. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
6. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
7. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
                count.increment();
7064
            }
7065
        }
7066
        final BitSet toRemove = new BitSet();
7067 21 1. removeElements : changed conditional boundary → NOT_SCHEDULED
2. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : changed conditional boundary → NOT_SCHEDULED
5. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : changed conditional boundary → NOT_SCHEDULED
8. removeElements : negated conditional → NOT_SCHEDULED
9. removeElements : changed conditional boundary → NOT_SCHEDULED
10. removeElements : negated conditional → NOT_SCHEDULED
11. removeElements : changed conditional boundary → NOT_SCHEDULED
12. removeElements : negated conditional → NOT_SCHEDULED
13. removeElements : changed conditional boundary → NOT_SCHEDULED
14. removeElements : negated conditional → NOT_SCHEDULED
15. removeElements : changed conditional boundary → NOT_SCHEDULED
16. removeElements : negated conditional → NOT_SCHEDULED
17. removeElements : Changed increment from 1 to -1 → KILLED
18. removeElements : Changed increment from 1 to -1 → KILLED
19. removeElements : Changed increment from 1 to -1 → KILLED
20. removeElements : Changed increment from 1 to -1 → KILLED
21. removeElements : Changed increment from 1 to -1 → KILLED
        for (int i = 0; i < array.length; i++) {
7068
            final long key = array[i];
7069
            final MutableInt count = occurrences.get(key);
7070 7 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
            if (count != null) {
7071 7 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
                if (count.decrementAndGet() == 0) {
7072
                    occurrences.remove(key);
7073
                }
7074 7 1. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
2. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
3. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
4. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
5. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
6. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
7. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
                toRemove.set(i);
7075
            }
7076
        }
7077 7 1. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return (long[]) removeAll(array, toRemove);
7078
    }
7079
7080
    /**
7081
     * <p>Removes the elements at the specified positions from the specified array.
7082
     * All remaining elements are shifted to the left.
7083
     *
7084
     * <p>This method returns a new array with the same elements of the input
7085
     * array except those at the specified positions. The component
7086
     * type of the returned array is always the same as that of the input
7087
     * array.
7088
     *
7089
     * <p>If the input array is {@code null}, an IndexOutOfBoundsException
7090
     * will be thrown, because in that case no valid index can be specified.
7091
     *
7092
     * <pre>
7093
     * ArrayUtils.removeAll([1], 0)             = []
7094
     * ArrayUtils.removeAll([2, 6], 0)          = [6]
7095
     * ArrayUtils.removeAll([2, 6], 0, 1)       = []
7096
     * ArrayUtils.removeAll([2, 6, 3], 1, 2)    = [2]
7097
     * ArrayUtils.removeAll([2, 6, 3], 0, 2)    = [6]
7098
     * ArrayUtils.removeAll([2, 6, 3], 0, 1, 2) = []
7099
     * </pre>
7100
     *
7101
     * @param array   the array to remove the element from, may not be {@code null}
7102
     * @param indices the positions of the elements to be removed
7103
     * @return A new array containing the existing elements except those
7104
     *         at the specified positions.
7105
     * @throws IndexOutOfBoundsException if any index is out of range
7106
     * (index &lt; 0 || index &gt;= array.length), or if the array is {@code null}.
7107
     * @since 3.0.1
7108
     */
7109
    public static float[] removeAll(final float[] array, final int... indices) {
7110 7 1. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return (float[]) removeAll((Object) array, indices);
7111
    }
7112
7113
    /**
7114
     * <p>Removes occurrences of specified elements, in specified quantities,
7115
     * from the specified array. All subsequent elements are shifted left.
7116
     * For any element-to-be-removed specified in greater quantities than
7117
     * contained in the original array, no change occurs beyond the
7118
     * removal of the existing matching items.
7119
     *
7120
     * <p>This method returns a new array with the same elements of the input
7121
     * array except for the earliest-encountered occurrences of the specified
7122
     * elements. The component type of the returned array is always the same
7123
     * as that of the input array.
7124
     *
7125
     * <pre>
7126
     * ArrayUtils.removeElements(null, 1, 2)      = null
7127
     * ArrayUtils.removeElements([], 1, 2)        = []
7128
     * ArrayUtils.removeElements([1], 2, 3)       = [1]
7129
     * ArrayUtils.removeElements([1, 3], 1, 2)    = [3]
7130
     * ArrayUtils.removeElements([1, 3, 1], 1)    = [3, 1]
7131
     * ArrayUtils.removeElements([1, 3, 1], 1, 1) = [3]
7132
     * </pre>
7133
     *
7134
     * @param array  the array to remove the element from, may be {@code null}
7135
     * @param values the elements to be removed
7136
     * @return A new array containing the existing elements except the
7137
     *         earliest-encountered occurrences of the specified elements.
7138
     * @since 3.0.1
7139
     */
7140
    public static float[] removeElements(final float[] array, final float... values) {
7141 14 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
8. removeElements : negated conditional → NOT_SCHEDULED
9. removeElements : negated conditional → NOT_SCHEDULED
10. removeElements : negated conditional → NOT_SCHEDULED
11. removeElements : negated conditional → NOT_SCHEDULED
12. removeElements : negated conditional → NOT_SCHEDULED
13. removeElements : negated conditional → NOT_SCHEDULED
14. removeElements : negated conditional → NOT_SCHEDULED
        if (isEmpty(array) || isEmpty(values)) {
7142 7 1. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array);
7143
        }
7144
        final HashMap<Float, MutableInt> occurrences = new HashMap<Float, MutableInt>(values.length);
7145 21 1. removeElements : changed conditional boundary → NOT_SCHEDULED
2. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : changed conditional boundary → NOT_SCHEDULED
5. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : changed conditional boundary → NOT_SCHEDULED
8. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
9. removeElements : negated conditional → NOT_SCHEDULED
10. removeElements : changed conditional boundary → NOT_SCHEDULED
11. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
12. removeElements : negated conditional → NOT_SCHEDULED
13. removeElements : changed conditional boundary → NOT_SCHEDULED
14. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
15. removeElements : negated conditional → NOT_SCHEDULED
16. removeElements : changed conditional boundary → NOT_SCHEDULED
17. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
18. removeElements : negated conditional → NOT_SCHEDULED
19. removeElements : changed conditional boundary → NOT_SCHEDULED
20. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
21. removeElements : negated conditional → NOT_SCHEDULED
        for (final float v : values) {
7146
            final Float boxed = Float.valueOf(v);
7147
            final MutableInt count = occurrences.get(boxed);
7148 7 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
            if (count == null) {
7149
                occurrences.put(boxed, new MutableInt(1));
7150
            } else {
7151 7 1. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
2. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
3. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
4. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
5. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
6. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
7. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
                count.increment();
7152
            }
7153
        }
7154
        final BitSet toRemove = new BitSet();
7155 21 1. removeElements : changed conditional boundary → NOT_SCHEDULED
2. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : changed conditional boundary → NOT_SCHEDULED
5. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : changed conditional boundary → NOT_SCHEDULED
8. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
9. removeElements : negated conditional → NOT_SCHEDULED
10. removeElements : changed conditional boundary → NOT_SCHEDULED
11. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
12. removeElements : negated conditional → NOT_SCHEDULED
13. removeElements : changed conditional boundary → NOT_SCHEDULED
14. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
15. removeElements : negated conditional → NOT_SCHEDULED
16. removeElements : changed conditional boundary → NOT_SCHEDULED
17. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
18. removeElements : negated conditional → NOT_SCHEDULED
19. removeElements : changed conditional boundary → NOT_SCHEDULED
20. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
21. removeElements : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < array.length; i++) {
7156
            final float key = array[i];
7157
            final MutableInt count = occurrences.get(key);
7158 7 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
            if (count != null) {
7159 7 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
                if (count.decrementAndGet() == 0) {
7160
                    occurrences.remove(key);
7161
                }
7162 7 1. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
2. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
3. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
4. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
5. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
6. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
7. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
                toRemove.set(i);
7163
            }
7164
        }
7165 7 1. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return (float[]) removeAll(array, toRemove);
7166
    }
7167
7168
    /**
7169
     * <p>Removes the elements at the specified positions from the specified array.
7170
     * All remaining elements are shifted to the left.
7171
     *
7172
     * <p>This method returns a new array with the same elements of the input
7173
     * array except those at the specified positions. The component
7174
     * type of the returned array is always the same as that of the input
7175
     * array.
7176
     *
7177
     * <p>If the input array is {@code null}, an IndexOutOfBoundsException
7178
     * will be thrown, because in that case no valid index can be specified.
7179
     *
7180
     * <pre>
7181
     * ArrayUtils.removeAll([1], 0)             = []
7182
     * ArrayUtils.removeAll([2, 6], 0)          = [6]
7183
     * ArrayUtils.removeAll([2, 6], 0, 1)       = []
7184
     * ArrayUtils.removeAll([2, 6, 3], 1, 2)    = [2]
7185
     * ArrayUtils.removeAll([2, 6, 3], 0, 2)    = [6]
7186
     * ArrayUtils.removeAll([2, 6, 3], 0, 1, 2) = []
7187
     * </pre>
7188
     *
7189
     * @param array   the array to remove the element from, may not be {@code null}
7190
     * @param indices the positions of the elements to be removed
7191
     * @return A new array containing the existing elements except those
7192
     *         at the specified positions.
7193
     * @throws IndexOutOfBoundsException if any index is out of range
7194
     * (index &lt; 0 || index &gt;= array.length), or if the array is {@code null}.
7195
     * @since 3.0.1
7196
     */
7197
    public static double[] removeAll(final double[] array, final int... indices) {
7198 7 1. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return (double[]) removeAll((Object) array, indices);
7199
    }
7200
7201
    /**
7202
     * <p>Removes occurrences of specified elements, in specified quantities,
7203
     * from the specified array. All subsequent elements are shifted left.
7204
     * For any element-to-be-removed specified in greater quantities than
7205
     * contained in the original array, no change occurs beyond the
7206
     * removal of the existing matching items.
7207
     *
7208
     * <p>This method returns a new array with the same elements of the input
7209
     * array except for the earliest-encountered occurrences of the specified
7210
     * elements. The component type of the returned array is always the same
7211
     * as that of the input array.
7212
     *
7213
     * <pre>
7214
     * ArrayUtils.removeElements(null, 1, 2)      = null
7215
     * ArrayUtils.removeElements([], 1, 2)        = []
7216
     * ArrayUtils.removeElements([1], 2, 3)       = [1]
7217
     * ArrayUtils.removeElements([1, 3], 1, 2)    = [3]
7218
     * ArrayUtils.removeElements([1, 3, 1], 1)    = [3, 1]
7219
     * ArrayUtils.removeElements([1, 3, 1], 1, 1) = [3]
7220
     * </pre>
7221
     *
7222
     * @param array  the array to remove the element from, may be {@code null}
7223
     * @param values the elements to be removed
7224
     * @return A new array containing the existing elements except the
7225
     *         earliest-encountered occurrences of the specified elements.
7226
     * @since 3.0.1
7227
     */
7228
    public static double[] removeElements(final double[] array, final double... values) {
7229 14 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
8. removeElements : negated conditional → NOT_SCHEDULED
9. removeElements : negated conditional → NOT_SCHEDULED
10. removeElements : negated conditional → NOT_SCHEDULED
11. removeElements : negated conditional → NOT_SCHEDULED
12. removeElements : negated conditional → NOT_SCHEDULED
13. removeElements : negated conditional → NOT_SCHEDULED
14. removeElements : negated conditional → NOT_SCHEDULED
        if (isEmpty(array) || isEmpty(values)) {
7230 7 1. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array);
7231
        }
7232
        final HashMap<Double, MutableInt> occurrences = new HashMap<Double, MutableInt>(values.length);
7233 21 1. removeElements : changed conditional boundary → NOT_SCHEDULED
2. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : changed conditional boundary → NOT_SCHEDULED
5. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : changed conditional boundary → NOT_SCHEDULED
8. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
9. removeElements : negated conditional → NOT_SCHEDULED
10. removeElements : changed conditional boundary → NOT_SCHEDULED
11. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
12. removeElements : negated conditional → NOT_SCHEDULED
13. removeElements : changed conditional boundary → NOT_SCHEDULED
14. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
15. removeElements : negated conditional → NOT_SCHEDULED
16. removeElements : changed conditional boundary → NOT_SCHEDULED
17. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
18. removeElements : negated conditional → NOT_SCHEDULED
19. removeElements : changed conditional boundary → NOT_SCHEDULED
20. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
21. removeElements : negated conditional → NOT_SCHEDULED
        for (final double v : values) {
7234
            final Double boxed = Double.valueOf(v);
7235
            final MutableInt count = occurrences.get(boxed);
7236 7 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
            if (count == null) {
7237
                occurrences.put(boxed, new MutableInt(1));
7238
            } else {
7239 7 1. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
2. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
3. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
4. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
5. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
6. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
7. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
                count.increment();
7240
            }
7241
        }
7242
        final BitSet toRemove = new BitSet();
7243 21 1. removeElements : changed conditional boundary → NOT_SCHEDULED
2. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : changed conditional boundary → NOT_SCHEDULED
5. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : changed conditional boundary → NOT_SCHEDULED
8. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
9. removeElements : negated conditional → NOT_SCHEDULED
10. removeElements : changed conditional boundary → NOT_SCHEDULED
11. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
12. removeElements : negated conditional → NOT_SCHEDULED
13. removeElements : changed conditional boundary → NOT_SCHEDULED
14. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
15. removeElements : negated conditional → NOT_SCHEDULED
16. removeElements : changed conditional boundary → NOT_SCHEDULED
17. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
18. removeElements : negated conditional → NOT_SCHEDULED
19. removeElements : changed conditional boundary → NOT_SCHEDULED
20. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
21. removeElements : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < array.length; i++) {
7244
            final double key = array[i];
7245
            final MutableInt count = occurrences.get(key);
7246 7 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
            if (count != null) {
7247 7 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
                if (count.decrementAndGet() == 0) {
7248
                    occurrences.remove(key);
7249
                }
7250 7 1. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
2. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
3. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
4. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
5. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
6. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
7. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
                toRemove.set(i);
7251
            }
7252
        }
7253 7 1. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return (double[]) removeAll(array, toRemove);
7254
    }
7255
7256
    /**
7257
     * <p>Removes the elements at the specified positions from the specified array.
7258
     * All remaining elements are shifted to the left.
7259
     *
7260
     * <p>This method returns a new array with the same elements of the input
7261
     * array except those at the specified positions. The component
7262
     * type of the returned array is always the same as that of the input
7263
     * array.
7264
     *
7265
     * <p>If the input array is {@code null}, an IndexOutOfBoundsException
7266
     * will be thrown, because in that case no valid index can be specified.
7267
     *
7268
     * <pre>
7269
     * ArrayUtils.removeAll([true, false, true], 0, 2) = [false]
7270
     * ArrayUtils.removeAll([true, false, true], 1, 2) = [true]
7271
     * </pre>
7272
     *
7273
     * @param array   the array to remove the element from, may not be {@code null}
7274
     * @param indices the positions of the elements to be removed
7275
     * @return A new array containing the existing elements except those
7276
     *         at the specified positions.
7277
     * @throws IndexOutOfBoundsException if any index is out of range
7278
     * (index &lt; 0 || index &gt;= array.length), or if the array is {@code null}.
7279
     * @since 3.0.1
7280
     */
7281
    public static boolean[] removeAll(final boolean[] array, final int... indices) {
7282 7 1. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return (boolean[]) removeAll((Object) array, indices);
7283
    }
7284
7285
    /**
7286
     * <p>Removes occurrences of specified elements, in specified quantities,
7287
     * from the specified array. All subsequent elements are shifted left.
7288
     * For any element-to-be-removed specified in greater quantities than
7289
     * contained in the original array, no change occurs beyond the
7290
     * removal of the existing matching items.
7291
     *
7292
     * <p>This method returns a new array with the same elements of the input
7293
     * array except for the earliest-encountered occurrences of the specified
7294
     * elements. The component type of the returned array is always the same
7295
     * as that of the input array.
7296
     *
7297
     * <pre>
7298
     * ArrayUtils.removeElements(null, true, false)               = null
7299
     * ArrayUtils.removeElements([], true, false)                 = []
7300
     * ArrayUtils.removeElements([true], false, false)            = [true]
7301
     * ArrayUtils.removeElements([true, false], true, true)       = [false]
7302
     * ArrayUtils.removeElements([true, false, true], true)       = [false, true]
7303
     * ArrayUtils.removeElements([true, false, true], true, true) = [false]
7304
     * </pre>
7305
     *
7306
     * @param array  the array to remove the element from, may be {@code null}
7307
     * @param values the elements to be removed
7308
     * @return A new array containing the existing elements except the
7309
     *         earliest-encountered occurrences of the specified elements.
7310
     * @since 3.0.1
7311
     */
7312
    public static boolean[] removeElements(final boolean[] array, final boolean... values) {
7313 14 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
8. removeElements : negated conditional → NOT_SCHEDULED
9. removeElements : negated conditional → NOT_SCHEDULED
10. removeElements : negated conditional → NOT_SCHEDULED
11. removeElements : negated conditional → NOT_SCHEDULED
12. removeElements : negated conditional → NOT_SCHEDULED
13. removeElements : negated conditional → NOT_SCHEDULED
14. removeElements : negated conditional → NOT_SCHEDULED
        if (isEmpty(array) || isEmpty(values)) {
7314 7 1. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array);
7315
        }
7316
        final HashMap<Boolean, MutableInt> occurrences = new HashMap<Boolean, MutableInt>(2); // only two possible values here
7317 21 1. removeElements : changed conditional boundary → NOT_SCHEDULED
2. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : changed conditional boundary → NOT_SCHEDULED
5. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : changed conditional boundary → NOT_SCHEDULED
8. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
9. removeElements : negated conditional → NOT_SCHEDULED
10. removeElements : changed conditional boundary → NOT_SCHEDULED
11. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
12. removeElements : negated conditional → NOT_SCHEDULED
13. removeElements : changed conditional boundary → NOT_SCHEDULED
14. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
15. removeElements : negated conditional → NOT_SCHEDULED
16. removeElements : changed conditional boundary → NOT_SCHEDULED
17. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
18. removeElements : negated conditional → NOT_SCHEDULED
19. removeElements : changed conditional boundary → NOT_SCHEDULED
20. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
21. removeElements : negated conditional → NOT_SCHEDULED
        for (final boolean v : values) {
7318
            final Boolean boxed = Boolean.valueOf(v);
7319
            final MutableInt count = occurrences.get(boxed);
7320 7 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
            if (count == null) {
7321
                occurrences.put(boxed, new MutableInt(1));
7322
            } else {
7323 7 1. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
2. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
3. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
4. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
5. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
6. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
7. removeElements : removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED
                count.increment();
7324
            }
7325
        }
7326
        final BitSet toRemove = new BitSet();
7327 21 1. removeElements : changed conditional boundary → NOT_SCHEDULED
2. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : changed conditional boundary → NOT_SCHEDULED
5. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : changed conditional boundary → NOT_SCHEDULED
8. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
9. removeElements : negated conditional → NOT_SCHEDULED
10. removeElements : changed conditional boundary → NOT_SCHEDULED
11. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
12. removeElements : negated conditional → NOT_SCHEDULED
13. removeElements : changed conditional boundary → NOT_SCHEDULED
14. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
15. removeElements : negated conditional → NOT_SCHEDULED
16. removeElements : changed conditional boundary → NOT_SCHEDULED
17. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
18. removeElements : negated conditional → NOT_SCHEDULED
19. removeElements : changed conditional boundary → NOT_SCHEDULED
20. removeElements : Changed increment from 1 to -1 → NOT_SCHEDULED
21. removeElements : negated conditional → NOT_SCHEDULED
        for (int i = 0; i < array.length; i++) {
7328
            final boolean key = array[i];
7329
            final MutableInt count = occurrences.get(key);
7330 7 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
            if (count != null) {
7331 7 1. removeElements : negated conditional → NOT_SCHEDULED
2. removeElements : negated conditional → NOT_SCHEDULED
3. removeElements : negated conditional → NOT_SCHEDULED
4. removeElements : negated conditional → NOT_SCHEDULED
5. removeElements : negated conditional → NOT_SCHEDULED
6. removeElements : negated conditional → NOT_SCHEDULED
7. removeElements : negated conditional → NOT_SCHEDULED
                if (count.decrementAndGet() == 0) {
7332
                    occurrences.remove(key);
7333
                }
7334 7 1. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
2. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
3. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
4. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
5. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
6. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
7. removeElements : removed call to java/util/BitSet::set → NOT_SCHEDULED
                toRemove.set(i);
7335
            }
7336
        }
7337 7 1. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → KILLED
4. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → KILLED
5. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → KILLED
6. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → KILLED
7. removeElements : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → KILLED
        return (boolean[]) removeAll(array, toRemove);
7338
    }
7339
7340
    /**
7341
     * Removes multiple array elements specified by index.
7342
     * @param array source
7343
     * @param indices to remove
7344
     * @return new array of same type minus elements specified by unique values of {@code indices}
7345
     * @since 3.0.1
7346
     */
7347
    // package protected for access by unit tests
7348
    static Object removeAll(final Object array, final int... indices) {
7349
        final int length = getLength(array);
7350
        int diff = 0; // number of distinct indexes, i.e. number of entries that will be removed
7351
        int[] clonedIndices = clone(indices);
7352 7 1. removeAll : removed call to java/util/Arrays::sort → NOT_SCHEDULED
2. removeAll : removed call to java/util/Arrays::sort → NOT_SCHEDULED
3. removeAll : removed call to java/util/Arrays::sort → NOT_SCHEDULED
4. removeAll : removed call to java/util/Arrays::sort → NOT_SCHEDULED
5. removeAll : removed call to java/util/Arrays::sort → NOT_SCHEDULED
6. removeAll : removed call to java/util/Arrays::sort → NOT_SCHEDULED
7. removeAll : removed call to java/util/Arrays::sort → NOT_SCHEDULED
        Arrays.sort(clonedIndices);
7353
7354
        // identify length of result array
7355 7 1. removeAll : negated conditional → NOT_SCHEDULED
2. removeAll : negated conditional → NOT_SCHEDULED
3. removeAll : negated conditional → NOT_SCHEDULED
4. removeAll : negated conditional → NOT_SCHEDULED
5. removeAll : negated conditional → NOT_SCHEDULED
6. removeAll : negated conditional → NOT_SCHEDULED
7. removeAll : negated conditional → NOT_SCHEDULED
        if (isNotEmpty(clonedIndices)) {
7356
            int i = clonedIndices.length;
7357
            int prevIndex = length;
7358 21 1. removeAll : changed conditional boundary → NOT_SCHEDULED
2. removeAll : Changed increment from -1 to 1 → NOT_SCHEDULED
3. removeAll : negated conditional → NOT_SCHEDULED
4. removeAll : changed conditional boundary → NOT_SCHEDULED
5. removeAll : Changed increment from -1 to 1 → NOT_SCHEDULED
6. removeAll : negated conditional → NOT_SCHEDULED
7. removeAll : changed conditional boundary → NOT_SCHEDULED
8. removeAll : Changed increment from -1 to 1 → NOT_SCHEDULED
9. removeAll : negated conditional → NOT_SCHEDULED
10. removeAll : changed conditional boundary → NOT_SCHEDULED
11. removeAll : Changed increment from -1 to 1 → NOT_SCHEDULED
12. removeAll : negated conditional → NOT_SCHEDULED
13. removeAll : changed conditional boundary → NOT_SCHEDULED
14. removeAll : Changed increment from -1 to 1 → NOT_SCHEDULED
15. removeAll : negated conditional → NOT_SCHEDULED
16. removeAll : changed conditional boundary → NOT_SCHEDULED
17. removeAll : Changed increment from -1 to 1 → NOT_SCHEDULED
18. removeAll : negated conditional → NOT_SCHEDULED
19. removeAll : changed conditional boundary → NOT_SCHEDULED
20. removeAll : Changed increment from -1 to 1 → NOT_SCHEDULED
21. removeAll : negated conditional → NOT_SCHEDULED
            while (--i >= 0) {
7359
                final int index = clonedIndices[i];
7360 28 1. removeAll : changed conditional boundary → NOT_SCHEDULED
2. removeAll : changed conditional boundary → NOT_SCHEDULED
3. removeAll : negated conditional → NOT_SCHEDULED
4. removeAll : negated conditional → NOT_SCHEDULED
5. removeAll : changed conditional boundary → NOT_SCHEDULED
6. removeAll : changed conditional boundary → NOT_SCHEDULED
7. removeAll : negated conditional → NOT_SCHEDULED
8. removeAll : negated conditional → NOT_SCHEDULED
9. removeAll : changed conditional boundary → NOT_SCHEDULED
10. removeAll : changed conditional boundary → NOT_SCHEDULED
11. removeAll : negated conditional → NOT_SCHEDULED
12. removeAll : negated conditional → NOT_SCHEDULED
13. removeAll : changed conditional boundary → NOT_SCHEDULED
14. removeAll : changed conditional boundary → NOT_SCHEDULED
15. removeAll : negated conditional → NOT_SCHEDULED
16. removeAll : negated conditional → NOT_SCHEDULED
17. removeAll : changed conditional boundary → NOT_SCHEDULED
18. removeAll : changed conditional boundary → NOT_SCHEDULED
19. removeAll : negated conditional → NOT_SCHEDULED
20. removeAll : negated conditional → NOT_SCHEDULED
21. removeAll : changed conditional boundary → NOT_SCHEDULED
22. removeAll : changed conditional boundary → NOT_SCHEDULED
23. removeAll : negated conditional → NOT_SCHEDULED
24. removeAll : negated conditional → NOT_SCHEDULED
25. removeAll : changed conditional boundary → NOT_SCHEDULED
26. removeAll : changed conditional boundary → NOT_SCHEDULED
27. removeAll : negated conditional → NOT_SCHEDULED
28. removeAll : negated conditional → NOT_SCHEDULED
                if (index < 0 || index >= length) {
7361
                    throw new IndexOutOfBoundsException("Index: " + index + ", Length: " + length);
7362
                }
7363 14 1. removeAll : changed conditional boundary → NOT_SCHEDULED
2. removeAll : negated conditional → NOT_SCHEDULED
3. removeAll : changed conditional boundary → NOT_SCHEDULED
4. removeAll : negated conditional → NOT_SCHEDULED
5. removeAll : changed conditional boundary → NOT_SCHEDULED
6. removeAll : negated conditional → NOT_SCHEDULED
7. removeAll : changed conditional boundary → NOT_SCHEDULED
8. removeAll : negated conditional → NOT_SCHEDULED
9. removeAll : changed conditional boundary → NOT_SCHEDULED
10. removeAll : negated conditional → NOT_SCHEDULED
11. removeAll : changed conditional boundary → NOT_SCHEDULED
12. removeAll : negated conditional → NOT_SCHEDULED
13. removeAll : changed conditional boundary → NOT_SCHEDULED
14. removeAll : negated conditional → NOT_SCHEDULED
                if (index >= prevIndex) {
7364
                    continue;
7365
                }
7366 7 1. removeAll : Changed increment from 1 to -1 → NOT_SCHEDULED
2. removeAll : Changed increment from 1 to -1 → NOT_SCHEDULED
3. removeAll : Changed increment from 1 to -1 → NOT_SCHEDULED
4. removeAll : Changed increment from 1 to -1 → NOT_SCHEDULED
5. removeAll : Changed increment from 1 to -1 → NOT_SCHEDULED
6. removeAll : Changed increment from 1 to -1 → NOT_SCHEDULED
7. removeAll : Changed increment from 1 to -1 → NOT_SCHEDULED
                diff++;
7367
                prevIndex = index;
7368
            }
7369
        }
7370
7371
        // create result array
7372 7 1. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
2. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
3. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
4. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
5. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
6. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
7. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
        final Object result = Array.newInstance(array.getClass().getComponentType(), length - diff);
7373 14 1. removeAll : changed conditional boundary → NOT_SCHEDULED
2. removeAll : negated conditional → NOT_SCHEDULED
3. removeAll : changed conditional boundary → NOT_SCHEDULED
4. removeAll : negated conditional → NOT_SCHEDULED
5. removeAll : changed conditional boundary → NOT_SCHEDULED
6. removeAll : negated conditional → NOT_SCHEDULED
7. removeAll : changed conditional boundary → NOT_SCHEDULED
8. removeAll : negated conditional → NOT_SCHEDULED
9. removeAll : changed conditional boundary → NOT_SCHEDULED
10. removeAll : negated conditional → NOT_SCHEDULED
11. removeAll : changed conditional boundary → NOT_SCHEDULED
12. removeAll : negated conditional → NOT_SCHEDULED
13. removeAll : changed conditional boundary → NOT_SCHEDULED
14. removeAll : negated conditional → NOT_SCHEDULED
        if (diff < length) {
7374
            int end = length; // index just after last copy
7375 7 1. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
2. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
3. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
4. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
5. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
6. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
7. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
            int dest = length - diff; // number of entries so far not copied
7376 28 1. removeAll : changed conditional boundary → NOT_SCHEDULED
2. removeAll : Changed increment from -1 to 1 → NOT_SCHEDULED
3. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
4. removeAll : negated conditional → NOT_SCHEDULED
5. removeAll : changed conditional boundary → NOT_SCHEDULED
6. removeAll : Changed increment from -1 to 1 → NOT_SCHEDULED
7. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
8. removeAll : negated conditional → NOT_SCHEDULED
9. removeAll : changed conditional boundary → NOT_SCHEDULED
10. removeAll : Changed increment from -1 to 1 → NOT_SCHEDULED
11. removeAll : negated conditional → NOT_SCHEDULED
12. removeAll : changed conditional boundary → NOT_SCHEDULED
13. removeAll : Changed increment from -1 to 1 → NOT_SCHEDULED
14. removeAll : negated conditional → NOT_SCHEDULED
15. removeAll : changed conditional boundary → NOT_SCHEDULED
16. removeAll : Changed increment from -1 to 1 → NOT_SCHEDULED
17. removeAll : negated conditional → NOT_SCHEDULED
18. removeAll : changed conditional boundary → NOT_SCHEDULED
19. removeAll : Changed increment from -1 to 1 → NOT_SCHEDULED
20. removeAll : negated conditional → NOT_SCHEDULED
21. removeAll : changed conditional boundary → NOT_SCHEDULED
22. removeAll : Changed increment from -1 to 1 → NOT_SCHEDULED
23. removeAll : negated conditional → NOT_SCHEDULED
24. removeAll : Replaced integer subtraction with addition → KILLED
25. removeAll : Replaced integer subtraction with addition → KILLED
26. removeAll : Replaced integer subtraction with addition → KILLED
27. removeAll : Replaced integer subtraction with addition → KILLED
28. removeAll : Replaced integer subtraction with addition → KILLED
            for (int i = clonedIndices.length - 1; i >= 0; i--) {
7377
                final int index = clonedIndices[i];
7378 21 1. removeAll : changed conditional boundary → NOT_SCHEDULED
2. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
3. removeAll : negated conditional → NOT_SCHEDULED
4. removeAll : changed conditional boundary → NOT_SCHEDULED
5. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
6. removeAll : negated conditional → NOT_SCHEDULED
7. removeAll : changed conditional boundary → NOT_SCHEDULED
8. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
9. removeAll : negated conditional → NOT_SCHEDULED
10. removeAll : changed conditional boundary → NOT_SCHEDULED
11. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
12. removeAll : negated conditional → NOT_SCHEDULED
13. removeAll : changed conditional boundary → NOT_SCHEDULED
14. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
15. removeAll : negated conditional → NOT_SCHEDULED
16. removeAll : changed conditional boundary → NOT_SCHEDULED
17. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
18. removeAll : negated conditional → NOT_SCHEDULED
19. removeAll : changed conditional boundary → NOT_SCHEDULED
20. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
21. removeAll : negated conditional → NOT_SCHEDULED
                if (end - index > 1) { // same as (cp > 0)
7379 14 1. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
2. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
3. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
4. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
5. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
6. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
7. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
8. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
9. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
10. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
11. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
12. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
13. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
14. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
                    final int cp = end - index - 1;
7380 7 1. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
2. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
3. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
4. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
5. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
6. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
7. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
                    dest -= cp;
7381 14 1. removeAll : Replaced integer addition with subtraction → NOT_SCHEDULED
2. removeAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
3. removeAll : Replaced integer addition with subtraction → NOT_SCHEDULED
4. removeAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
5. removeAll : Replaced integer addition with subtraction → NOT_SCHEDULED
6. removeAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
7. removeAll : Replaced integer addition with subtraction → NOT_SCHEDULED
8. removeAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
9. removeAll : Replaced integer addition with subtraction → NOT_SCHEDULED
10. removeAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
11. removeAll : Replaced integer addition with subtraction → NOT_SCHEDULED
12. removeAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
13. removeAll : Replaced integer addition with subtraction → NOT_SCHEDULED
14. removeAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
                    System.arraycopy(array, index + 1, result, dest, cp);
7382
                    // Afer this copy, we still have room for dest items.
7383
                }
7384
                end = index;
7385
            }
7386 14 1. removeAll : changed conditional boundary → NOT_SCHEDULED
2. removeAll : negated conditional → NOT_SCHEDULED
3. removeAll : changed conditional boundary → NOT_SCHEDULED
4. removeAll : negated conditional → NOT_SCHEDULED
5. removeAll : changed conditional boundary → NOT_SCHEDULED
6. removeAll : negated conditional → NOT_SCHEDULED
7. removeAll : changed conditional boundary → NOT_SCHEDULED
8. removeAll : negated conditional → NOT_SCHEDULED
9. removeAll : changed conditional boundary → NOT_SCHEDULED
10. removeAll : negated conditional → NOT_SCHEDULED
11. removeAll : changed conditional boundary → NOT_SCHEDULED
12. removeAll : negated conditional → NOT_SCHEDULED
13. removeAll : changed conditional boundary → NOT_SCHEDULED
14. removeAll : negated conditional → NOT_SCHEDULED
            if (end > 0) {
7387 7 1. removeAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
2. removeAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
3. removeAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
4. removeAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
5. removeAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
6. removeAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
7. removeAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
                System.arraycopy(array, 0, result, 0, end);
7388
            }
7389
        }
7390 7 1. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return result;
7391
    }
7392
7393
    /**
7394
     * Removes multiple array elements specified by indices.
7395
     * 
7396
     * @param array source
7397
     * @param indices to remove
7398
     * @return new array of same type minus elements specified by the set bits in {@code indices}
7399
     * @since 3.2
7400
     */
7401
    // package protected for access by unit tests
7402
    static Object removeAll(final Object array, final BitSet indices) {
7403
        final int srcLength = ArrayUtils.getLength(array);
7404
        // No need to check maxIndex here, because method only currently called from removeElements()
7405
        // which guarantee to generate on;y valid bit entries.
7406
//        final int maxIndex = indices.length();
7407
//        if (maxIndex > srcLength) { 
7408
//            throw new IndexOutOfBoundsException("Index: " + (maxIndex-1) + ", Length: " + srcLength);
7409
//        }
7410
        final int removals = indices.cardinality(); // true bits are items to remove
7411 7 1. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
2. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
3. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
4. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
5. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
6. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
7. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
        final Object result = Array.newInstance(array.getClass().getComponentType(), srcLength - removals);
7412
        int srcIndex = 0;
7413
        int destIndex = 0;
7414
        int count;
7415
        int set;
7416 7 1. removeAll : negated conditional → NOT_SCHEDULED
2. removeAll : negated conditional → NOT_SCHEDULED
3. removeAll : negated conditional → NOT_SCHEDULED
4. removeAll : negated conditional → NOT_SCHEDULED
5. removeAll : negated conditional → NOT_SCHEDULED
6. removeAll : negated conditional → NOT_SCHEDULED
7. removeAll : negated conditional → NOT_SCHEDULED
        while ((set = indices.nextSetBit(srcIndex)) != -1) {
7417 7 1. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
2. removeAll : Replaced integer subtraction with addition → KILLED
3. removeAll : Replaced integer subtraction with addition → KILLED
4. removeAll : Replaced integer subtraction with addition → KILLED
5. removeAll : Replaced integer subtraction with addition → KILLED
6. removeAll : Replaced integer subtraction with addition → KILLED
7. removeAll : Replaced integer subtraction with addition → KILLED
            count = set - srcIndex;
7418 14 1. removeAll : changed conditional boundary → NOT_SCHEDULED
2. removeAll : negated conditional → NOT_SCHEDULED
3. removeAll : changed conditional boundary → NOT_SCHEDULED
4. removeAll : negated conditional → NOT_SCHEDULED
5. removeAll : changed conditional boundary → NOT_SCHEDULED
6. removeAll : negated conditional → NOT_SCHEDULED
7. removeAll : changed conditional boundary → NOT_SCHEDULED
8. removeAll : negated conditional → NOT_SCHEDULED
9. removeAll : changed conditional boundary → NOT_SCHEDULED
10. removeAll : negated conditional → NOT_SCHEDULED
11. removeAll : changed conditional boundary → NOT_SCHEDULED
12. removeAll : negated conditional → NOT_SCHEDULED
13. removeAll : changed conditional boundary → NOT_SCHEDULED
14. removeAll : negated conditional → NOT_SCHEDULED
            if (count > 0) {
7419 7 1. removeAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
2. removeAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
3. removeAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
4. removeAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
5. removeAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
6. removeAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
7. removeAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
                System.arraycopy(array, srcIndex, result, destIndex, count);
7420 7 1. removeAll : Replaced integer addition with subtraction → NOT_SCHEDULED
2. removeAll : Replaced integer addition with subtraction → NOT_SCHEDULED
3. removeAll : Replaced integer addition with subtraction → NOT_SCHEDULED
4. removeAll : Replaced integer addition with subtraction → NOT_SCHEDULED
5. removeAll : Replaced integer addition with subtraction → NOT_SCHEDULED
6. removeAll : Replaced integer addition with subtraction → NOT_SCHEDULED
7. removeAll : Replaced integer addition with subtraction → NOT_SCHEDULED
                destIndex += count;
7421
            }
7422
            srcIndex = indices.nextClearBit(set);
7423
        }
7424 7 1. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
2. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
3. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
4. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
5. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
6. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
7. removeAll : Replaced integer subtraction with addition → NOT_SCHEDULED
        count = srcLength - srcIndex;
7425 14 1. removeAll : changed conditional boundary → NOT_SCHEDULED
2. removeAll : negated conditional → NOT_SCHEDULED
3. removeAll : changed conditional boundary → NOT_SCHEDULED
4. removeAll : negated conditional → NOT_SCHEDULED
5. removeAll : changed conditional boundary → NOT_SCHEDULED
6. removeAll : negated conditional → NOT_SCHEDULED
7. removeAll : changed conditional boundary → NOT_SCHEDULED
8. removeAll : negated conditional → NOT_SCHEDULED
9. removeAll : changed conditional boundary → NOT_SCHEDULED
10. removeAll : negated conditional → NOT_SCHEDULED
11. removeAll : changed conditional boundary → NOT_SCHEDULED
12. removeAll : negated conditional → NOT_SCHEDULED
13. removeAll : changed conditional boundary → NOT_SCHEDULED
14. removeAll : negated conditional → NOT_SCHEDULED
        if (count > 0) {
7426 7 1. removeAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
2. removeAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
3. removeAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
4. removeAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
5. removeAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
6. removeAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
7. removeAll : removed call to java/lang/System::arraycopy → NOT_SCHEDULED
            System.arraycopy(array, srcIndex, result, destIndex, count);            
7427
        }
7428 7 1. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeAll : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return result;
7429
    }
7430
7431
    /**
7432
     * <p>This method checks whether the provided array is sorted according to the class's 
7433
     * {@code compareTo} method.
7434
     *
7435
     * @param array the array to check
7436
     * @param <T> the datatype of the array to check, it must implement {@code Comparable}
7437
     * @return whether the array is sorted
7438
     * @since 3.4
7439
     */
7440
    public static <T extends Comparable<? super T>> boolean isSorted(final T[] array) {
7441 7 1. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return isSorted(array, new Comparator<T>() {
7442
            @Override
7443
            public int compare(T o1, T o2) {
7444 6 1. compare : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
2. compare : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
3. compare : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
4. compare : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
5. compare : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
6. compare : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
                return o1.compareTo(o2);
7445
            }
7446
        });
7447
    }
7448
   
7449
7450
    /**
7451
     * <p>This method checks whether the provided array is sorted according to the provided {@code Comparator}.
7452
     *
7453
     * @param array the array to check
7454
     * @param comparator the {@code Comparator} to compare over
7455
     * @param <T> the datatype of the array
7456
     * @return whether the array is sorted
7457
     * @since 3.4
7458
     */
7459
    public static <T> boolean isSorted(final T[] array, final Comparator<T> comparator) {
7460 7 1. isSorted : negated conditional → NOT_SCHEDULED
2. isSorted : negated conditional → NOT_SCHEDULED
3. isSorted : negated conditional → NOT_SCHEDULED
4. isSorted : negated conditional → NOT_SCHEDULED
5. isSorted : negated conditional → NOT_SCHEDULED
6. isSorted : negated conditional → NOT_SCHEDULED
7. isSorted : negated conditional → NOT_SCHEDULED
        if (comparator == null) {
7461
            throw new IllegalArgumentException("Comparator should not be null.");
7462
        }
7463
        
7464 21 1. isSorted : changed conditional boundary → NOT_SCHEDULED
2. isSorted : negated conditional → NOT_SCHEDULED
3. isSorted : negated conditional → NOT_SCHEDULED
4. isSorted : changed conditional boundary → NOT_SCHEDULED
5. isSorted : negated conditional → NOT_SCHEDULED
6. isSorted : negated conditional → NOT_SCHEDULED
7. isSorted : changed conditional boundary → NOT_SCHEDULED
8. isSorted : negated conditional → NOT_SCHEDULED
9. isSorted : negated conditional → NOT_SCHEDULED
10. isSorted : changed conditional boundary → NOT_SCHEDULED
11. isSorted : negated conditional → NOT_SCHEDULED
12. isSorted : negated conditional → NOT_SCHEDULED
13. isSorted : changed conditional boundary → NOT_SCHEDULED
14. isSorted : negated conditional → NOT_SCHEDULED
15. isSorted : negated conditional → NOT_SCHEDULED
16. isSorted : changed conditional boundary → NOT_SCHEDULED
17. isSorted : negated conditional → NOT_SCHEDULED
18. isSorted : negated conditional → NOT_SCHEDULED
19. isSorted : changed conditional boundary → NOT_SCHEDULED
20. isSorted : negated conditional → NOT_SCHEDULED
21. isSorted : negated conditional → NOT_SCHEDULED
        if (array == null || array.length < 2) {
7465 7 1. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return true;
7466
        }
7467
7468
        T previous = array[0];
7469
        final int n = array.length;
7470 21 1. isSorted : changed conditional boundary → NOT_SCHEDULED
2. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
3. isSorted : negated conditional → NOT_SCHEDULED
4. isSorted : changed conditional boundary → NOT_SCHEDULED
5. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
6. isSorted : negated conditional → NOT_SCHEDULED
7. isSorted : changed conditional boundary → NOT_SCHEDULED
8. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
9. isSorted : negated conditional → NOT_SCHEDULED
10. isSorted : changed conditional boundary → NOT_SCHEDULED
11. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
12. isSorted : negated conditional → NOT_SCHEDULED
13. isSorted : changed conditional boundary → NOT_SCHEDULED
14. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
15. isSorted : negated conditional → NOT_SCHEDULED
16. isSorted : changed conditional boundary → NOT_SCHEDULED
17. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
18. isSorted : negated conditional → NOT_SCHEDULED
19. isSorted : changed conditional boundary → NOT_SCHEDULED
20. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
21. isSorted : negated conditional → NOT_SCHEDULED
        for (int i = 1; i < n; i++) {
7471
            final T current = array[i];
7472 14 1. isSorted : changed conditional boundary → NOT_SCHEDULED
2. isSorted : negated conditional → NOT_SCHEDULED
3. isSorted : changed conditional boundary → NOT_SCHEDULED
4. isSorted : negated conditional → NOT_SCHEDULED
5. isSorted : changed conditional boundary → NOT_SCHEDULED
6. isSorted : negated conditional → NOT_SCHEDULED
7. isSorted : changed conditional boundary → NOT_SCHEDULED
8. isSorted : negated conditional → NOT_SCHEDULED
9. isSorted : changed conditional boundary → NOT_SCHEDULED
10. isSorted : negated conditional → NOT_SCHEDULED
11. isSorted : changed conditional boundary → NOT_SCHEDULED
12. isSorted : negated conditional → NOT_SCHEDULED
13. isSorted : changed conditional boundary → NOT_SCHEDULED
14. isSorted : negated conditional → NOT_SCHEDULED
            if (comparator.compare(previous, current) > 0) {
7473 7 1. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
                return false;
7474
            }
7475
7476
            previous = current;
7477
        }
7478 7 1. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return true;
7479
    }
7480
7481
    /**
7482
     * <p>This method checks whether the provided array is sorted according to natural ordering.
7483
     *
7484
     * @param array the array to check
7485
     * @return whether the array is sorted according to natural ordering
7486
     * @since 3.4
7487
     */
7488
    public static boolean isSorted(int[] array) {
7489 21 1. isSorted : changed conditional boundary → NOT_SCHEDULED
2. isSorted : negated conditional → NOT_SCHEDULED
3. isSorted : negated conditional → NOT_SCHEDULED
4. isSorted : changed conditional boundary → NOT_SCHEDULED
5. isSorted : negated conditional → NOT_SCHEDULED
6. isSorted : negated conditional → NOT_SCHEDULED
7. isSorted : changed conditional boundary → NOT_SCHEDULED
8. isSorted : negated conditional → NOT_SCHEDULED
9. isSorted : negated conditional → NOT_SCHEDULED
10. isSorted : changed conditional boundary → NOT_SCHEDULED
11. isSorted : negated conditional → NOT_SCHEDULED
12. isSorted : negated conditional → NOT_SCHEDULED
13. isSorted : changed conditional boundary → NOT_SCHEDULED
14. isSorted : negated conditional → NOT_SCHEDULED
15. isSorted : negated conditional → NOT_SCHEDULED
16. isSorted : changed conditional boundary → NOT_SCHEDULED
17. isSorted : negated conditional → NOT_SCHEDULED
18. isSorted : negated conditional → NOT_SCHEDULED
19. isSorted : changed conditional boundary → NOT_SCHEDULED
20. isSorted : negated conditional → NOT_SCHEDULED
21. isSorted : negated conditional → NOT_SCHEDULED
        if (array == null || array.length < 2) {
7490 7 1. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return true;
7491
        }
7492
7493
        int previous = array[0];
7494
        final int n = array.length;
7495 21 1. isSorted : changed conditional boundary → NOT_SCHEDULED
2. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
3. isSorted : negated conditional → NOT_SCHEDULED
4. isSorted : changed conditional boundary → NOT_SCHEDULED
5. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
6. isSorted : negated conditional → NOT_SCHEDULED
7. isSorted : changed conditional boundary → NOT_SCHEDULED
8. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
9. isSorted : negated conditional → NOT_SCHEDULED
10. isSorted : changed conditional boundary → NOT_SCHEDULED
11. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
12. isSorted : negated conditional → NOT_SCHEDULED
13. isSorted : changed conditional boundary → NOT_SCHEDULED
14. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
15. isSorted : negated conditional → NOT_SCHEDULED
16. isSorted : changed conditional boundary → NOT_SCHEDULED
17. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
18. isSorted : negated conditional → NOT_SCHEDULED
19. isSorted : changed conditional boundary → NOT_SCHEDULED
20. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
21. isSorted : negated conditional → NOT_SCHEDULED
        for (int i = 1; i < n; i++) {
7496
            final int current = array[i];
7497 14 1. isSorted : changed conditional boundary → NOT_SCHEDULED
2. isSorted : negated conditional → NOT_SCHEDULED
3. isSorted : changed conditional boundary → NOT_SCHEDULED
4. isSorted : negated conditional → NOT_SCHEDULED
5. isSorted : changed conditional boundary → NOT_SCHEDULED
6. isSorted : negated conditional → NOT_SCHEDULED
7. isSorted : changed conditional boundary → NOT_SCHEDULED
8. isSorted : negated conditional → NOT_SCHEDULED
9. isSorted : changed conditional boundary → NOT_SCHEDULED
10. isSorted : negated conditional → NOT_SCHEDULED
11. isSorted : changed conditional boundary → NOT_SCHEDULED
12. isSorted : negated conditional → NOT_SCHEDULED
13. isSorted : changed conditional boundary → NOT_SCHEDULED
14. isSorted : negated conditional → NOT_SCHEDULED
            if (NumberUtils.compare(previous, current) > 0) {
7498 7 1. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
                return false;
7499
            }
7500
7501
            previous = current;
7502
        }
7503 7 1. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return true;
7504
    }
7505
7506
    /**
7507
     * <p>This method checks whether the provided array is sorted according to natural ordering.
7508
     *
7509
     * @param array the array to check
7510
     * @return whether the array is sorted according to natural ordering
7511
     * @since 3.4
7512
     */
7513
    public static boolean isSorted(long[] array) {
7514 21 1. isSorted : changed conditional boundary → NOT_SCHEDULED
2. isSorted : negated conditional → NOT_SCHEDULED
3. isSorted : negated conditional → NOT_SCHEDULED
4. isSorted : changed conditional boundary → NOT_SCHEDULED
5. isSorted : negated conditional → NOT_SCHEDULED
6. isSorted : negated conditional → NOT_SCHEDULED
7. isSorted : changed conditional boundary → NOT_SCHEDULED
8. isSorted : negated conditional → NOT_SCHEDULED
9. isSorted : negated conditional → NOT_SCHEDULED
10. isSorted : changed conditional boundary → NOT_SCHEDULED
11. isSorted : negated conditional → NOT_SCHEDULED
12. isSorted : negated conditional → NOT_SCHEDULED
13. isSorted : changed conditional boundary → NOT_SCHEDULED
14. isSorted : negated conditional → NOT_SCHEDULED
15. isSorted : negated conditional → NOT_SCHEDULED
16. isSorted : changed conditional boundary → NOT_SCHEDULED
17. isSorted : negated conditional → NOT_SCHEDULED
18. isSorted : negated conditional → NOT_SCHEDULED
19. isSorted : changed conditional boundary → SURVIVED
20. isSorted : negated conditional → NOT_SCHEDULED
21. isSorted : negated conditional → NOT_SCHEDULED
        if (array == null || array.length < 2) {
7515 7 1. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return true;
7516
        }
7517
7518
        long previous = array[0];
7519
        final int n = array.length;
7520 21 1. isSorted : changed conditional boundary → NOT_SCHEDULED
2. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
3. isSorted : negated conditional → NOT_SCHEDULED
4. isSorted : changed conditional boundary → NOT_SCHEDULED
5. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
6. isSorted : negated conditional → NOT_SCHEDULED
7. isSorted : changed conditional boundary → NOT_SCHEDULED
8. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
9. isSorted : negated conditional → NOT_SCHEDULED
10. isSorted : changed conditional boundary → NOT_SCHEDULED
11. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
12. isSorted : negated conditional → NOT_SCHEDULED
13. isSorted : changed conditional boundary → NOT_SCHEDULED
14. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
15. isSorted : negated conditional → NOT_SCHEDULED
16. isSorted : changed conditional boundary → NOT_SCHEDULED
17. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
18. isSorted : negated conditional → NOT_SCHEDULED
19. isSorted : changed conditional boundary → NOT_SCHEDULED
20. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
21. isSorted : negated conditional → NOT_SCHEDULED
        for (int i = 1; i < n; i++) {
7521
            final long current = array[i];
7522 14 1. isSorted : changed conditional boundary → NOT_SCHEDULED
2. isSorted : negated conditional → NOT_SCHEDULED
3. isSorted : changed conditional boundary → NOT_SCHEDULED
4. isSorted : negated conditional → NOT_SCHEDULED
5. isSorted : changed conditional boundary → NOT_SCHEDULED
6. isSorted : negated conditional → NOT_SCHEDULED
7. isSorted : changed conditional boundary → NOT_SCHEDULED
8. isSorted : negated conditional → NOT_SCHEDULED
9. isSorted : changed conditional boundary → NOT_SCHEDULED
10. isSorted : negated conditional → NOT_SCHEDULED
11. isSorted : changed conditional boundary → NOT_SCHEDULED
12. isSorted : negated conditional → NOT_SCHEDULED
13. isSorted : changed conditional boundary → NOT_SCHEDULED
14. isSorted : negated conditional → NOT_SCHEDULED
            if (NumberUtils.compare(previous, current) > 0) {
7523 7 1. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
                return false;
7524
            }
7525
7526
            previous = current;
7527
        }
7528 7 1. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return true;
7529
    }
7530
7531
    /**
7532
     * <p>This method checks whether the provided array is sorted according to natural ordering.
7533
     *
7534
     * @param array the array to check
7535
     * @return whether the array is sorted according to natural ordering
7536
     * @since 3.4
7537
     */
7538
    public static boolean isSorted(short[] array) {
7539 21 1. isSorted : changed conditional boundary → NOT_SCHEDULED
2. isSorted : negated conditional → NOT_SCHEDULED
3. isSorted : negated conditional → NOT_SCHEDULED
4. isSorted : changed conditional boundary → NOT_SCHEDULED
5. isSorted : negated conditional → NOT_SCHEDULED
6. isSorted : negated conditional → NOT_SCHEDULED
7. isSorted : changed conditional boundary → NOT_SCHEDULED
8. isSorted : negated conditional → NOT_SCHEDULED
9. isSorted : negated conditional → NOT_SCHEDULED
10. isSorted : changed conditional boundary → NOT_SCHEDULED
11. isSorted : negated conditional → NOT_SCHEDULED
12. isSorted : negated conditional → NOT_SCHEDULED
13. isSorted : changed conditional boundary → NOT_SCHEDULED
14. isSorted : negated conditional → NOT_SCHEDULED
15. isSorted : negated conditional → NOT_SCHEDULED
16. isSorted : changed conditional boundary → NOT_SCHEDULED
17. isSorted : negated conditional → NOT_SCHEDULED
18. isSorted : negated conditional → NOT_SCHEDULED
19. isSorted : changed conditional boundary → NOT_SCHEDULED
20. isSorted : negated conditional → NOT_SCHEDULED
21. isSorted : negated conditional → NOT_SCHEDULED
        if (array == null || array.length < 2) {
7540 7 1. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return true;
7541
        }
7542
7543
        short previous = array[0];
7544
        final int n = array.length;
7545 21 1. isSorted : changed conditional boundary → NOT_SCHEDULED
2. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
3. isSorted : negated conditional → NOT_SCHEDULED
4. isSorted : changed conditional boundary → NOT_SCHEDULED
5. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
6. isSorted : negated conditional → NOT_SCHEDULED
7. isSorted : changed conditional boundary → NOT_SCHEDULED
8. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
9. isSorted : negated conditional → NOT_SCHEDULED
10. isSorted : changed conditional boundary → NOT_SCHEDULED
11. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
12. isSorted : negated conditional → NOT_SCHEDULED
13. isSorted : changed conditional boundary → NOT_SCHEDULED
14. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
15. isSorted : negated conditional → NOT_SCHEDULED
16. isSorted : changed conditional boundary → NOT_SCHEDULED
17. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
18. isSorted : negated conditional → NOT_SCHEDULED
19. isSorted : changed conditional boundary → NOT_SCHEDULED
20. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
21. isSorted : negated conditional → NOT_SCHEDULED
        for (int i = 1; i < n; i++) {
7546
            final short current = array[i];
7547 14 1. isSorted : changed conditional boundary → NOT_SCHEDULED
2. isSorted : negated conditional → NOT_SCHEDULED
3. isSorted : changed conditional boundary → NOT_SCHEDULED
4. isSorted : negated conditional → NOT_SCHEDULED
5. isSorted : changed conditional boundary → NOT_SCHEDULED
6. isSorted : negated conditional → NOT_SCHEDULED
7. isSorted : changed conditional boundary → NOT_SCHEDULED
8. isSorted : negated conditional → NOT_SCHEDULED
9. isSorted : changed conditional boundary → NOT_SCHEDULED
10. isSorted : negated conditional → NOT_SCHEDULED
11. isSorted : changed conditional boundary → NOT_SCHEDULED
12. isSorted : negated conditional → NOT_SCHEDULED
13. isSorted : changed conditional boundary → NOT_SCHEDULED
14. isSorted : negated conditional → NOT_SCHEDULED
            if (NumberUtils.compare(previous, current) > 0) {
7548 7 1. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
                return false;
7549
            }
7550
7551
            previous = current;
7552
        }
7553 7 1. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return true;
7554
    }
7555
7556
    /**
7557
     * <p>This method checks whether the provided array is sorted according to natural ordering.
7558
     *
7559
     * @param array the array to check
7560
     * @return whether the array is sorted according to natural ordering
7561
     * @since 3.4
7562
     */
7563
    public static boolean isSorted(final double[] array) {
7564 21 1. isSorted : changed conditional boundary → NOT_SCHEDULED
2. isSorted : negated conditional → NOT_SCHEDULED
3. isSorted : negated conditional → NOT_SCHEDULED
4. isSorted : changed conditional boundary → NOT_SCHEDULED
5. isSorted : negated conditional → NOT_SCHEDULED
6. isSorted : negated conditional → NOT_SCHEDULED
7. isSorted : changed conditional boundary → NOT_SCHEDULED
8. isSorted : negated conditional → NOT_SCHEDULED
9. isSorted : negated conditional → NOT_SCHEDULED
10. isSorted : changed conditional boundary → NOT_SCHEDULED
11. isSorted : negated conditional → NOT_SCHEDULED
12. isSorted : negated conditional → NOT_SCHEDULED
13. isSorted : changed conditional boundary → NOT_SCHEDULED
14. isSorted : negated conditional → NOT_SCHEDULED
15. isSorted : negated conditional → NOT_SCHEDULED
16. isSorted : changed conditional boundary → NOT_SCHEDULED
17. isSorted : negated conditional → NOT_SCHEDULED
18. isSorted : negated conditional → NOT_SCHEDULED
19. isSorted : changed conditional boundary → NOT_SCHEDULED
20. isSorted : negated conditional → NOT_SCHEDULED
21. isSorted : negated conditional → NOT_SCHEDULED
        if (array == null || array.length < 2) {
7565 7 1. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return true;
7566
        }
7567
7568
        double previous = array[0];
7569
        final int n = array.length;
7570 21 1. isSorted : changed conditional boundary → NOT_SCHEDULED
2. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
3. isSorted : negated conditional → NOT_SCHEDULED
4. isSorted : changed conditional boundary → NOT_SCHEDULED
5. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
6. isSorted : negated conditional → NOT_SCHEDULED
7. isSorted : changed conditional boundary → NOT_SCHEDULED
8. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
9. isSorted : negated conditional → NOT_SCHEDULED
10. isSorted : changed conditional boundary → NOT_SCHEDULED
11. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
12. isSorted : negated conditional → NOT_SCHEDULED
13. isSorted : changed conditional boundary → NOT_SCHEDULED
14. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
15. isSorted : negated conditional → NOT_SCHEDULED
16. isSorted : changed conditional boundary → NOT_SCHEDULED
17. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
18. isSorted : negated conditional → NOT_SCHEDULED
19. isSorted : changed conditional boundary → NOT_SCHEDULED
20. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
21. isSorted : negated conditional → NOT_SCHEDULED
        for (int i = 1; i < n; i++) {
7571
            final double current = array[i];
7572 14 1. isSorted : changed conditional boundary → NOT_SCHEDULED
2. isSorted : negated conditional → NOT_SCHEDULED
3. isSorted : changed conditional boundary → NOT_SCHEDULED
4. isSorted : negated conditional → NOT_SCHEDULED
5. isSorted : changed conditional boundary → NOT_SCHEDULED
6. isSorted : negated conditional → NOT_SCHEDULED
7. isSorted : changed conditional boundary → NOT_SCHEDULED
8. isSorted : negated conditional → NOT_SCHEDULED
9. isSorted : changed conditional boundary → NOT_SCHEDULED
10. isSorted : negated conditional → NOT_SCHEDULED
11. isSorted : changed conditional boundary → NOT_SCHEDULED
12. isSorted : negated conditional → NOT_SCHEDULED
13. isSorted : changed conditional boundary → NOT_SCHEDULED
14. isSorted : negated conditional → NOT_SCHEDULED
            if (Double.compare(previous, current) > 0) {
7573 7 1. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
                return false;
7574
            }
7575
7576
            previous = current;
7577
        }
7578 7 1. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return true;
7579
    }
7580
7581
    /**
7582
     * <p>This method checks whether the provided array is sorted according to natural ordering.
7583
     *
7584
     * @param array the array to check
7585
     * @return whether the array is sorted according to natural ordering
7586
     * @since 3.4
7587
     */
7588
    public static boolean isSorted(final float[] array) {
7589 21 1. isSorted : changed conditional boundary → NOT_SCHEDULED
2. isSorted : negated conditional → NOT_SCHEDULED
3. isSorted : negated conditional → NOT_SCHEDULED
4. isSorted : changed conditional boundary → NOT_SCHEDULED
5. isSorted : negated conditional → NOT_SCHEDULED
6. isSorted : negated conditional → NOT_SCHEDULED
7. isSorted : changed conditional boundary → NOT_SCHEDULED
8. isSorted : negated conditional → NOT_SCHEDULED
9. isSorted : negated conditional → NOT_SCHEDULED
10. isSorted : changed conditional boundary → NOT_SCHEDULED
11. isSorted : negated conditional → NOT_SCHEDULED
12. isSorted : negated conditional → NOT_SCHEDULED
13. isSorted : changed conditional boundary → NOT_SCHEDULED
14. isSorted : negated conditional → NOT_SCHEDULED
15. isSorted : negated conditional → NOT_SCHEDULED
16. isSorted : changed conditional boundary → NOT_SCHEDULED
17. isSorted : negated conditional → NOT_SCHEDULED
18. isSorted : negated conditional → NOT_SCHEDULED
19. isSorted : changed conditional boundary → NOT_SCHEDULED
20. isSorted : negated conditional → NOT_SCHEDULED
21. isSorted : negated conditional → NOT_SCHEDULED
        if (array == null || array.length < 2) {
7590 7 1. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return true;
7591
        }
7592
7593
        float previous = array[0];
7594
        final int n = array.length;
7595 21 1. isSorted : changed conditional boundary → NOT_SCHEDULED
2. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
3. isSorted : negated conditional → NOT_SCHEDULED
4. isSorted : changed conditional boundary → NOT_SCHEDULED
5. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
6. isSorted : negated conditional → NOT_SCHEDULED
7. isSorted : changed conditional boundary → NOT_SCHEDULED
8. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
9. isSorted : negated conditional → NOT_SCHEDULED
10. isSorted : changed conditional boundary → NOT_SCHEDULED
11. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
12. isSorted : negated conditional → NOT_SCHEDULED
13. isSorted : changed conditional boundary → NOT_SCHEDULED
14. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
15. isSorted : negated conditional → NOT_SCHEDULED
16. isSorted : changed conditional boundary → NOT_SCHEDULED
17. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
18. isSorted : negated conditional → NOT_SCHEDULED
19. isSorted : changed conditional boundary → NOT_SCHEDULED
20. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
21. isSorted : negated conditional → NOT_SCHEDULED
        for (int i = 1; i < n; i++) {
7596
            final float current = array[i];
7597 14 1. isSorted : changed conditional boundary → NOT_SCHEDULED
2. isSorted : negated conditional → NOT_SCHEDULED
3. isSorted : changed conditional boundary → NOT_SCHEDULED
4. isSorted : negated conditional → NOT_SCHEDULED
5. isSorted : changed conditional boundary → NOT_SCHEDULED
6. isSorted : negated conditional → NOT_SCHEDULED
7. isSorted : changed conditional boundary → NOT_SCHEDULED
8. isSorted : negated conditional → NOT_SCHEDULED
9. isSorted : changed conditional boundary → NOT_SCHEDULED
10. isSorted : negated conditional → NOT_SCHEDULED
11. isSorted : changed conditional boundary → NOT_SCHEDULED
12. isSorted : negated conditional → NOT_SCHEDULED
13. isSorted : changed conditional boundary → NOT_SCHEDULED
14. isSorted : negated conditional → NOT_SCHEDULED
            if (Float.compare(previous, current) > 0) {
7598 7 1. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
                return false;
7599
            }
7600
7601
            previous = current;
7602
        }
7603 7 1. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return true;
7604
    }
7605
7606
    /**
7607
     * <p>This method checks whether the provided array is sorted according to natural ordering.
7608
     *
7609
     * @param array the array to check
7610
     * @return whether the array is sorted according to natural ordering
7611
     * @since 3.4
7612
     */
7613
    public static boolean isSorted(byte[] array) {
7614 21 1. isSorted : changed conditional boundary → NOT_SCHEDULED
2. isSorted : negated conditional → NOT_SCHEDULED
3. isSorted : negated conditional → NOT_SCHEDULED
4. isSorted : changed conditional boundary → NOT_SCHEDULED
5. isSorted : negated conditional → NOT_SCHEDULED
6. isSorted : negated conditional → NOT_SCHEDULED
7. isSorted : changed conditional boundary → NOT_SCHEDULED
8. isSorted : negated conditional → NOT_SCHEDULED
9. isSorted : negated conditional → NOT_SCHEDULED
10. isSorted : changed conditional boundary → NOT_SCHEDULED
11. isSorted : negated conditional → NOT_SCHEDULED
12. isSorted : negated conditional → NOT_SCHEDULED
13. isSorted : changed conditional boundary → NOT_SCHEDULED
14. isSorted : negated conditional → NOT_SCHEDULED
15. isSorted : negated conditional → NOT_SCHEDULED
16. isSorted : changed conditional boundary → NOT_SCHEDULED
17. isSorted : negated conditional → NOT_SCHEDULED
18. isSorted : negated conditional → NOT_SCHEDULED
19. isSorted : changed conditional boundary → NOT_SCHEDULED
20. isSorted : negated conditional → NOT_SCHEDULED
21. isSorted : negated conditional → NOT_SCHEDULED
        if (array == null || array.length < 2) {
7615 7 1. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return true;
7616
        }
7617
7618
        byte previous = array[0];
7619
        final int n = array.length;
7620 21 1. isSorted : changed conditional boundary → NOT_SCHEDULED
2. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
3. isSorted : negated conditional → NOT_SCHEDULED
4. isSorted : changed conditional boundary → NOT_SCHEDULED
5. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
6. isSorted : negated conditional → NOT_SCHEDULED
7. isSorted : changed conditional boundary → NOT_SCHEDULED
8. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
9. isSorted : negated conditional → NOT_SCHEDULED
10. isSorted : changed conditional boundary → NOT_SCHEDULED
11. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
12. isSorted : negated conditional → NOT_SCHEDULED
13. isSorted : changed conditional boundary → NOT_SCHEDULED
14. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
15. isSorted : negated conditional → NOT_SCHEDULED
16. isSorted : changed conditional boundary → NOT_SCHEDULED
17. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
18. isSorted : negated conditional → NOT_SCHEDULED
19. isSorted : changed conditional boundary → NOT_SCHEDULED
20. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
21. isSorted : negated conditional → NOT_SCHEDULED
        for (int i = 1; i < n; i++) {
7621
            final byte current = array[i];
7622 14 1. isSorted : changed conditional boundary → NOT_SCHEDULED
2. isSorted : negated conditional → NOT_SCHEDULED
3. isSorted : changed conditional boundary → NOT_SCHEDULED
4. isSorted : negated conditional → NOT_SCHEDULED
5. isSorted : changed conditional boundary → NOT_SCHEDULED
6. isSorted : negated conditional → NOT_SCHEDULED
7. isSorted : changed conditional boundary → NOT_SCHEDULED
8. isSorted : negated conditional → NOT_SCHEDULED
9. isSorted : changed conditional boundary → NOT_SCHEDULED
10. isSorted : negated conditional → NOT_SCHEDULED
11. isSorted : changed conditional boundary → NOT_SCHEDULED
12. isSorted : negated conditional → NOT_SCHEDULED
13. isSorted : changed conditional boundary → NOT_SCHEDULED
14. isSorted : negated conditional → NOT_SCHEDULED
            if (NumberUtils.compare(previous, current) > 0) {
7623 7 1. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
                return false;
7624
            }
7625
7626
            previous = current;
7627
        }
7628 7 1. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return true;
7629
    }
7630
7631
    /**
7632
     * <p>This method checks whether the provided array is sorted according to natural ordering.
7633
     *
7634
     * @param array the array to check
7635
     * @return whether the array is sorted according to natural ordering
7636
     * @since 3.4
7637
     */
7638
    public static boolean isSorted(char[] array) {
7639 21 1. isSorted : changed conditional boundary → NOT_SCHEDULED
2. isSorted : negated conditional → NOT_SCHEDULED
3. isSorted : negated conditional → NOT_SCHEDULED
4. isSorted : changed conditional boundary → NOT_SCHEDULED
5. isSorted : negated conditional → NOT_SCHEDULED
6. isSorted : negated conditional → NOT_SCHEDULED
7. isSorted : changed conditional boundary → NOT_SCHEDULED
8. isSorted : negated conditional → NOT_SCHEDULED
9. isSorted : negated conditional → NOT_SCHEDULED
10. isSorted : changed conditional boundary → NOT_SCHEDULED
11. isSorted : negated conditional → NOT_SCHEDULED
12. isSorted : negated conditional → NOT_SCHEDULED
13. isSorted : changed conditional boundary → NOT_SCHEDULED
14. isSorted : negated conditional → NOT_SCHEDULED
15. isSorted : negated conditional → NOT_SCHEDULED
16. isSorted : changed conditional boundary → NOT_SCHEDULED
17. isSorted : negated conditional → NOT_SCHEDULED
18. isSorted : negated conditional → NOT_SCHEDULED
19. isSorted : changed conditional boundary → NOT_SCHEDULED
20. isSorted : negated conditional → NOT_SCHEDULED
21. isSorted : negated conditional → NOT_SCHEDULED
        if (array == null || array.length < 2) {
7640 7 1. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return true;
7641
        }
7642
7643
        char previous = array[0];
7644
        final int n = array.length;
7645 21 1. isSorted : changed conditional boundary → NOT_SCHEDULED
2. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
3. isSorted : negated conditional → NOT_SCHEDULED
4. isSorted : changed conditional boundary → NOT_SCHEDULED
5. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
6. isSorted : negated conditional → NOT_SCHEDULED
7. isSorted : changed conditional boundary → NOT_SCHEDULED
8. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
9. isSorted : negated conditional → NOT_SCHEDULED
10. isSorted : changed conditional boundary → NOT_SCHEDULED
11. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
12. isSorted : negated conditional → NOT_SCHEDULED
13. isSorted : changed conditional boundary → NOT_SCHEDULED
14. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
15. isSorted : negated conditional → NOT_SCHEDULED
16. isSorted : changed conditional boundary → NOT_SCHEDULED
17. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
18. isSorted : negated conditional → NOT_SCHEDULED
19. isSorted : changed conditional boundary → NOT_SCHEDULED
20. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
21. isSorted : negated conditional → NOT_SCHEDULED
        for (int i = 1; i < n; i++) {
7646
            final char current = array[i];
7647 14 1. isSorted : changed conditional boundary → NOT_SCHEDULED
2. isSorted : negated conditional → NOT_SCHEDULED
3. isSorted : changed conditional boundary → NOT_SCHEDULED
4. isSorted : negated conditional → NOT_SCHEDULED
5. isSorted : changed conditional boundary → NOT_SCHEDULED
6. isSorted : negated conditional → NOT_SCHEDULED
7. isSorted : changed conditional boundary → NOT_SCHEDULED
8. isSorted : negated conditional → NOT_SCHEDULED
9. isSorted : changed conditional boundary → NOT_SCHEDULED
10. isSorted : negated conditional → NOT_SCHEDULED
11. isSorted : changed conditional boundary → NOT_SCHEDULED
12. isSorted : negated conditional → NOT_SCHEDULED
13. isSorted : changed conditional boundary → SURVIVED
14. isSorted : negated conditional → NOT_SCHEDULED
            if (CharUtils.compare(previous, current) > 0) {
7648 7 1. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
                return false;
7649
            }
7650
7651
            previous = current;
7652
        }
7653 7 1. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return true;
7654
    }
7655
7656
    /**
7657
     * <p>This method checks whether the provided array is sorted according to natural ordering
7658
     * ({@code false} before {@code true}).
7659
     *
7660
     * @param array the array to check
7661
     * @return whether the array is sorted according to natural ordering
7662
     * @since 3.4
7663
     */
7664
    public static boolean isSorted(boolean[] array) {
7665 21 1. isSorted : changed conditional boundary → NOT_SCHEDULED
2. isSorted : negated conditional → NOT_SCHEDULED
3. isSorted : negated conditional → NOT_SCHEDULED
4. isSorted : changed conditional boundary → NOT_SCHEDULED
5. isSorted : negated conditional → NOT_SCHEDULED
6. isSorted : negated conditional → NOT_SCHEDULED
7. isSorted : changed conditional boundary → NOT_SCHEDULED
8. isSorted : negated conditional → NOT_SCHEDULED
9. isSorted : negated conditional → NOT_SCHEDULED
10. isSorted : changed conditional boundary → NOT_SCHEDULED
11. isSorted : negated conditional → NOT_SCHEDULED
12. isSorted : negated conditional → NOT_SCHEDULED
13. isSorted : changed conditional boundary → NOT_SCHEDULED
14. isSorted : negated conditional → NOT_SCHEDULED
15. isSorted : negated conditional → NOT_SCHEDULED
16. isSorted : changed conditional boundary → NOT_SCHEDULED
17. isSorted : negated conditional → NOT_SCHEDULED
18. isSorted : negated conditional → NOT_SCHEDULED
19. isSorted : changed conditional boundary → NOT_SCHEDULED
20. isSorted : negated conditional → NOT_SCHEDULED
21. isSorted : negated conditional → NOT_SCHEDULED
        if (array == null || array.length < 2) {
7666 7 1. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
            return true;
7667
        }
7668
7669
        boolean previous = array[0];
7670
        final int n = array.length;
7671 21 1. isSorted : changed conditional boundary → NOT_SCHEDULED
2. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
3. isSorted : negated conditional → NOT_SCHEDULED
4. isSorted : changed conditional boundary → NOT_SCHEDULED
5. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
6. isSorted : negated conditional → NOT_SCHEDULED
7. isSorted : changed conditional boundary → NOT_SCHEDULED
8. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
9. isSorted : negated conditional → NOT_SCHEDULED
10. isSorted : changed conditional boundary → NOT_SCHEDULED
11. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
12. isSorted : negated conditional → NOT_SCHEDULED
13. isSorted : changed conditional boundary → NOT_SCHEDULED
14. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
15. isSorted : negated conditional → NOT_SCHEDULED
16. isSorted : changed conditional boundary → NOT_SCHEDULED
17. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
18. isSorted : negated conditional → NOT_SCHEDULED
19. isSorted : changed conditional boundary → NOT_SCHEDULED
20. isSorted : Changed increment from 1 to -1 → NOT_SCHEDULED
21. isSorted : negated conditional → NOT_SCHEDULED
        for (int i = 1; i < n; i++) {
7672
            final boolean current = array[i];
7673 14 1. isSorted : changed conditional boundary → NOT_SCHEDULED
2. isSorted : negated conditional → NOT_SCHEDULED
3. isSorted : changed conditional boundary → NOT_SCHEDULED
4. isSorted : negated conditional → NOT_SCHEDULED
5. isSorted : changed conditional boundary → NOT_SCHEDULED
6. isSorted : negated conditional → NOT_SCHEDULED
7. isSorted : changed conditional boundary → NOT_SCHEDULED
8. isSorted : negated conditional → NOT_SCHEDULED
9. isSorted : changed conditional boundary → NOT_SCHEDULED
10. isSorted : negated conditional → NOT_SCHEDULED
11. isSorted : changed conditional boundary → NOT_SCHEDULED
12. isSorted : negated conditional → NOT_SCHEDULED
13. isSorted : changed conditional boundary → NOT_SCHEDULED
14. isSorted : negated conditional → NOT_SCHEDULED
            if (BooleanUtils.compare(previous, current) > 0) {
7674 7 1. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
                return false;
7675
            }
7676
7677
            previous = current;
7678
        }
7679 7 1. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
2. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
3. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
4. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
5. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
6. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
7. isSorted : replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED
        return true;
7680
    }
7681
7682
    /**
7683
     * Removes the occurrences of the specified element from the specified boolean array.
7684
     *
7685
     * <p>
7686
     * All subsequent elements are shifted to the left (subtracts one from their indices).
7687
     * If the array doesn't contains such an element, no elements are removed from the array.
7688
     * <code>null</code> will be returned if the input array is <code>null</code>.
7689
     * </p>
7690
     *
7691
     * @param element the element to remove
7692
     * @param array the input array
7693
     *
7694
     * @return A new array containing the existing elements except the occurrences of the specified element.
7695
     * @since 3.5
7696
     */
7697
    public static boolean[] removeAllOccurences(final boolean[] array, final boolean element) {
7698
        int index = indexOf(array, element);
7699 7 1. removeAllOccurences : negated conditional → NOT_SCHEDULED
2. removeAllOccurences : negated conditional → NOT_SCHEDULED
3. removeAllOccurences : negated conditional → NOT_SCHEDULED
4. removeAllOccurences : negated conditional → NOT_SCHEDULED
5. removeAllOccurences : negated conditional → NOT_SCHEDULED
6. removeAllOccurences : negated conditional → NOT_SCHEDULED
7. removeAllOccurences : negated conditional → NOT_SCHEDULED
        if (index == INDEX_NOT_FOUND) {
7700 7 1. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array);
7701
        }
7702
7703 7 1. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
2. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
3. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
4. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
5. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
6. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
7. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
        int[] indices = new int[array.length - index];
7704
        indices[0] = index;
7705
        int count = 1;
7706
7707 21 1. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
2. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
3. removeAllOccurences : negated conditional → NOT_SCHEDULED
4. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
5. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
6. removeAllOccurences : negated conditional → NOT_SCHEDULED
7. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
8. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
9. removeAllOccurences : negated conditional → NOT_SCHEDULED
10. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
11. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
12. removeAllOccurences : negated conditional → NOT_SCHEDULED
13. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
14. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
15. removeAllOccurences : negated conditional → NOT_SCHEDULED
16. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
17. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
18. removeAllOccurences : negated conditional → NOT_SCHEDULED
19. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
20. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
21. removeAllOccurences : negated conditional → NOT_SCHEDULED
        while ((index = indexOf(array, element, indices[count - 1] + 1)) != INDEX_NOT_FOUND) {
7708 7 1. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
2. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
3. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
4. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
5. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
6. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
7. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
            indices[count++] = index;
7709
        }
7710
7711 7 1. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return removeAll(array, Arrays.copyOf(indices, count));
7712
    }
7713
7714
    /**
7715
     * Removes the occurrences of the specified element from the specified char array.
7716
     *
7717
     * <p>
7718
     * All subsequent elements are shifted to the left (subtracts one from their indices).
7719
     * If the array doesn't contains such an element, no elements are removed from the array.
7720
     * <code>null</code> will be returned if the input array is <code>null</code>.
7721
     * </p>
7722
     *
7723
     * @param element the element to remove
7724
     * @param array the input array
7725
     *
7726
     * @return A new array containing the existing elements except the occurrences of the specified element.
7727
     * @since 3.5
7728
     */
7729
    public static char[] removeAllOccurences(final char[] array, final char element) {
7730
        int index = indexOf(array, element);
7731 7 1. removeAllOccurences : negated conditional → NOT_SCHEDULED
2. removeAllOccurences : negated conditional → NOT_SCHEDULED
3. removeAllOccurences : negated conditional → NOT_SCHEDULED
4. removeAllOccurences : negated conditional → NOT_SCHEDULED
5. removeAllOccurences : negated conditional → NOT_SCHEDULED
6. removeAllOccurences : negated conditional → NOT_SCHEDULED
7. removeAllOccurences : negated conditional → NOT_SCHEDULED
        if (index == INDEX_NOT_FOUND) {
7732 7 1. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array);
7733
        }
7734
7735 7 1. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
2. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
3. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
4. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
5. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
6. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
7. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
        int[] indices = new int[array.length - index];
7736
        indices[0] = index;
7737
        int count = 1;
7738
7739 21 1. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
2. removeAllOccurences : negated conditional → NOT_SCHEDULED
3. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
4. removeAllOccurences : negated conditional → NOT_SCHEDULED
5. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
6. removeAllOccurences : negated conditional → NOT_SCHEDULED
7. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
8. removeAllOccurences : negated conditional → NOT_SCHEDULED
9. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
10. removeAllOccurences : negated conditional → NOT_SCHEDULED
11. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
12. removeAllOccurences : negated conditional → NOT_SCHEDULED
13. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
14. removeAllOccurences : negated conditional → NOT_SCHEDULED
15. removeAllOccurences : Replaced integer addition with subtraction → KILLED
16. removeAllOccurences : Replaced integer addition with subtraction → KILLED
17. removeAllOccurences : Replaced integer addition with subtraction → KILLED
18. removeAllOccurences : Replaced integer addition with subtraction → KILLED
19. removeAllOccurences : Replaced integer addition with subtraction → KILLED
20. removeAllOccurences : Replaced integer addition with subtraction → KILLED
21. removeAllOccurences : Replaced integer addition with subtraction → KILLED
        while ((index = indexOf(array, element, indices[count - 1] + 1)) != INDEX_NOT_FOUND) {
7740 7 1. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
2. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
3. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
4. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
5. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
6. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
7. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
            indices[count++] = index;
7741
        }
7742
7743 7 1. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return removeAll(array, Arrays.copyOf(indices, count));
7744
    }
7745
7746
    /**
7747
     * Removes the occurrences of the specified element from the specified byte array.
7748
     *
7749
     * <p>
7750
     * All subsequent elements are shifted to the left (subtracts one from their indices).
7751
     * If the array doesn't contains such an element, no elements are removed from the array.
7752
     * <code>null</code> will be returned if the input array is <code>null</code>.
7753
     * </p>
7754
     *
7755
     * @param element the element to remove
7756
     * @param array the input array
7757
     *
7758
     * @return A new array containing the existing elements except the occurrences of the specified element.
7759
     * @since 3.5
7760
     */
7761
    public static byte[] removeAllOccurences(final byte[] array, final byte element) {
7762
        int index = indexOf(array, element);
7763 7 1. removeAllOccurences : negated conditional → NOT_SCHEDULED
2. removeAllOccurences : negated conditional → NOT_SCHEDULED
3. removeAllOccurences : negated conditional → NOT_SCHEDULED
4. removeAllOccurences : negated conditional → NOT_SCHEDULED
5. removeAllOccurences : negated conditional → NOT_SCHEDULED
6. removeAllOccurences : negated conditional → NOT_SCHEDULED
7. removeAllOccurences : negated conditional → NOT_SCHEDULED
        if (index == INDEX_NOT_FOUND) {
7764 7 1. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array);
7765
        }
7766
7767 7 1. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
2. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
3. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
4. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
5. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
6. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
7. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
        int[] indices = new int[array.length - index];
7768
        indices[0] = index;
7769
        int count = 1;
7770
7771 21 1. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
2. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
3. removeAllOccurences : negated conditional → NOT_SCHEDULED
4. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
5. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
6. removeAllOccurences : negated conditional → NOT_SCHEDULED
7. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
8. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
9. removeAllOccurences : negated conditional → NOT_SCHEDULED
10. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
11. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
12. removeAllOccurences : negated conditional → NOT_SCHEDULED
13. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
14. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
15. removeAllOccurences : negated conditional → NOT_SCHEDULED
16. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
17. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
18. removeAllOccurences : negated conditional → NOT_SCHEDULED
19. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
20. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
21. removeAllOccurences : negated conditional → NOT_SCHEDULED
        while ((index = indexOf(array, element, indices[count - 1] + 1)) != INDEX_NOT_FOUND) {
7772 7 1. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
2. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
3. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
4. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
5. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
6. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
7. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
            indices[count++] = index;
7773
        }
7774
7775 7 1. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return removeAll(array, Arrays.copyOf(indices, count));
7776
    }
7777
7778
    /**
7779
     * Removes the occurrences of the specified element from the specified short array.
7780
     *
7781
     * <p>
7782
     * All subsequent elements are shifted to the left (subtracts one from their indices).
7783
     * If the array doesn't contains such an element, no elements are removed from the array.
7784
     * <code>null</code> will be returned if the input array is <code>null</code>.
7785
     * </p>
7786
     *
7787
     * @param element the element to remove
7788
     * @param array the input array
7789
     *
7790
     * @return A new array containing the existing elements except the occurrences of the specified element.
7791
     * @since 3.5
7792
     */
7793
    public static short[] removeAllOccurences(final short[] array, final short element) {
7794
        int index = indexOf(array, element);
7795 7 1. removeAllOccurences : negated conditional → NOT_SCHEDULED
2. removeAllOccurences : negated conditional → NOT_SCHEDULED
3. removeAllOccurences : negated conditional → NOT_SCHEDULED
4. removeAllOccurences : negated conditional → NOT_SCHEDULED
5. removeAllOccurences : negated conditional → NOT_SCHEDULED
6. removeAllOccurences : negated conditional → NOT_SCHEDULED
7. removeAllOccurences : negated conditional → NOT_SCHEDULED
        if (index == INDEX_NOT_FOUND) {
7796 7 1. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array);
7797
        }
7798
7799 7 1. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
2. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
3. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
4. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
5. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
6. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
7. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
        int[] indices = new int[array.length - index];
7800
        indices[0] = index;
7801
        int count = 1;
7802
7803 21 1. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
2. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
3. removeAllOccurences : negated conditional → NOT_SCHEDULED
4. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
5. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
6. removeAllOccurences : negated conditional → NOT_SCHEDULED
7. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
8. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
9. removeAllOccurences : negated conditional → NOT_SCHEDULED
10. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
11. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
12. removeAllOccurences : negated conditional → NOT_SCHEDULED
13. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
14. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
15. removeAllOccurences : negated conditional → NOT_SCHEDULED
16. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
17. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
18. removeAllOccurences : negated conditional → NOT_SCHEDULED
19. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
20. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
21. removeAllOccurences : negated conditional → NOT_SCHEDULED
        while ((index = indexOf(array, element, indices[count - 1] + 1)) != INDEX_NOT_FOUND) {
7804 7 1. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
2. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
3. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
4. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
5. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
6. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
7. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
            indices[count++] = index;
7805
        }
7806
7807 7 1. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return removeAll(array, Arrays.copyOf(indices, count));
7808
    }
7809
7810
    /**
7811
     * Removes the occurrences of the specified element from the specified int array.
7812
     *
7813
     * <p>
7814
     * All subsequent elements are shifted to the left (subtracts one from their indices).
7815
     * If the array doesn't contains such an element, no elements are removed from the array.
7816
     * <code>null</code> will be returned if the input array is <code>null</code>.
7817
     * </p>
7818
     *
7819
     * @param element the element to remove
7820
     * @param array the input array
7821
     *
7822
     * @return A new array containing the existing elements except the occurrences of the specified element.
7823
     * @since 3.5
7824
     */
7825
    public static int[] removeAllOccurences(final int[] array, final int element) {
7826
        int index = indexOf(array, element);
7827 7 1. removeAllOccurences : negated conditional → NOT_SCHEDULED
2. removeAllOccurences : negated conditional → NOT_SCHEDULED
3. removeAllOccurences : negated conditional → NOT_SCHEDULED
4. removeAllOccurences : negated conditional → NOT_SCHEDULED
5. removeAllOccurences : negated conditional → NOT_SCHEDULED
6. removeAllOccurences : negated conditional → NOT_SCHEDULED
7. removeAllOccurences : negated conditional → NOT_SCHEDULED
        if (index == INDEX_NOT_FOUND) {
7828 7 1. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array);
7829
        }
7830
7831 7 1. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
2. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
3. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
4. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
5. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
6. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
7. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
        int[] indices = new int[array.length - index];
7832
        indices[0] = index;
7833
        int count = 1;
7834
7835 21 1. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
2. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
3. removeAllOccurences : negated conditional → NOT_SCHEDULED
4. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
5. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
6. removeAllOccurences : negated conditional → NOT_SCHEDULED
7. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
8. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
9. removeAllOccurences : negated conditional → NOT_SCHEDULED
10. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
11. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
12. removeAllOccurences : negated conditional → NOT_SCHEDULED
13. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
14. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
15. removeAllOccurences : negated conditional → NOT_SCHEDULED
16. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
17. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
18. removeAllOccurences : negated conditional → NOT_SCHEDULED
19. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
20. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
21. removeAllOccurences : negated conditional → NOT_SCHEDULED
        while ((index = indexOf(array, element, indices[count - 1] + 1)) != INDEX_NOT_FOUND) {
7836 7 1. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
2. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
3. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
4. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
5. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
6. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
7. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
            indices[count++] = index;
7837
        }
7838
7839 7 1. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return removeAll(array, Arrays.copyOf(indices, count));
7840
    }
7841
7842
    /**
7843
     * Removes the occurrences of the specified element from the specified long array.
7844
     *
7845
     * <p>
7846
     * All subsequent elements are shifted to the left (subtracts one from their indices).
7847
     * If the array doesn't contains such an element, no elements are removed from the array.
7848
     * <code>null</code> will be returned if the input array is <code>null</code>.
7849
     * </p>
7850
     *
7851
     * @param element the element to remove
7852
     * @param array the input array
7853
     *
7854
     * @return A new array containing the existing elements except the occurrences of the specified element.
7855
     * @since 3.5
7856
     */
7857
    public static long[] removeAllOccurences(final long[] array, final long element) {
7858
        int index = indexOf(array, element);
7859 7 1. removeAllOccurences : negated conditional → NOT_SCHEDULED
2. removeAllOccurences : negated conditional → NOT_SCHEDULED
3. removeAllOccurences : negated conditional → NOT_SCHEDULED
4. removeAllOccurences : negated conditional → NOT_SCHEDULED
5. removeAllOccurences : negated conditional → NOT_SCHEDULED
6. removeAllOccurences : negated conditional → NOT_SCHEDULED
7. removeAllOccurences : negated conditional → NOT_SCHEDULED
        if (index == INDEX_NOT_FOUND) {
7860 7 1. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array);
7861
        }
7862
7863 7 1. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
2. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
3. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
4. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
5. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
6. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
7. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
        int[] indices = new int[array.length - index];
7864
        indices[0] = index;
7865
        int count = 1;
7866
7867 21 1. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
2. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
3. removeAllOccurences : negated conditional → NOT_SCHEDULED
4. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
5. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
6. removeAllOccurences : negated conditional → NOT_SCHEDULED
7. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
8. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
9. removeAllOccurences : negated conditional → NOT_SCHEDULED
10. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
11. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
12. removeAllOccurences : negated conditional → NOT_SCHEDULED
13. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
14. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
15. removeAllOccurences : negated conditional → NOT_SCHEDULED
16. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
17. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
18. removeAllOccurences : negated conditional → NOT_SCHEDULED
19. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
20. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
21. removeAllOccurences : negated conditional → NOT_SCHEDULED
        while ((index = indexOf(array, element, indices[count - 1] + 1)) != INDEX_NOT_FOUND) {
7868 7 1. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
2. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
3. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
4. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
5. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
6. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
7. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
            indices[count++] = index;
7869
        }
7870
7871 7 1. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return removeAll(array, Arrays.copyOf(indices, count));
7872
    }
7873
7874
    /**
7875
     * Removes the occurrences of the specified element from the specified float array.
7876
     *
7877
     * <p>
7878
     * All subsequent elements are shifted to the left (subtracts one from their indices).
7879
     * If the array doesn't contains such an element, no elements are removed from the array.
7880
     * <code>null</code> will be returned if the input array is <code>null</code>.
7881
     * </p>
7882
     *
7883
     * @param element the element to remove
7884
     * @param array the input array
7885
     *
7886
     * @return A new array containing the existing elements except the occurrences of the specified element.
7887
     * @since 3.5
7888
     */
7889
    public static float[] removeAllOccurences(final float[] array, final float element) {
7890
        int index = indexOf(array, element);
7891 7 1. removeAllOccurences : negated conditional → NOT_SCHEDULED
2. removeAllOccurences : negated conditional → NOT_SCHEDULED
3. removeAllOccurences : negated conditional → NOT_SCHEDULED
4. removeAllOccurences : negated conditional → NOT_SCHEDULED
5. removeAllOccurences : negated conditional → NOT_SCHEDULED
6. removeAllOccurences : negated conditional → NOT_SCHEDULED
7. removeAllOccurences : negated conditional → NOT_SCHEDULED
        if (index == INDEX_NOT_FOUND) {
7892 7 1. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array);
7893
        }
7894
7895 7 1. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
2. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
3. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
4. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
5. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
6. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
7. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
        int[] indices = new int[array.length - index];
7896
        indices[0] = index;
7897
        int count = 1;
7898
7899 21 1. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
2. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
3. removeAllOccurences : negated conditional → NOT_SCHEDULED
4. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
5. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
6. removeAllOccurences : negated conditional → NOT_SCHEDULED
7. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
8. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
9. removeAllOccurences : negated conditional → NOT_SCHEDULED
10. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
11. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
12. removeAllOccurences : negated conditional → NOT_SCHEDULED
13. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
14. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
15. removeAllOccurences : negated conditional → NOT_SCHEDULED
16. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
17. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
18. removeAllOccurences : negated conditional → NOT_SCHEDULED
19. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
20. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
21. removeAllOccurences : negated conditional → NOT_SCHEDULED
        while ((index = indexOf(array, element, indices[count - 1] + 1)) != INDEX_NOT_FOUND) {
7900 7 1. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
2. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
3. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
4. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
5. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
6. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
7. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
            indices[count++] = index;
7901
        }
7902
7903 7 1. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → KILLED
2. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → KILLED
3. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → KILLED
4. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → KILLED
5. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → KILLED
6. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → KILLED
7. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → KILLED
        return removeAll(array, Arrays.copyOf(indices, count));
7904
    }
7905
7906
    /**
7907
     * Removes the occurrences of the specified element from the specified double array.
7908
     *
7909
     * <p>
7910
     * All subsequent elements are shifted to the left (subtracts one from their indices).
7911
     * If the array doesn't contains such an element, no elements are removed from the array.
7912
     * <code>null</code> will be returned if the input array is <code>null</code>.
7913
     * </p>
7914
     *
7915
     * @param element the element to remove
7916
     * @param array the input array
7917
     *
7918
     * @return A new array containing the existing elements except the occurrences of the specified element.
7919
     * @since 3.5
7920
     */
7921
    public static double[] removeAllOccurences(final double[] array, final double element) {
7922
        int index = indexOf(array, element);
7923 7 1. removeAllOccurences : negated conditional → NOT_SCHEDULED
2. removeAllOccurences : negated conditional → NOT_SCHEDULED
3. removeAllOccurences : negated conditional → NOT_SCHEDULED
4. removeAllOccurences : negated conditional → NOT_SCHEDULED
5. removeAllOccurences : negated conditional → NOT_SCHEDULED
6. removeAllOccurences : negated conditional → NOT_SCHEDULED
7. removeAllOccurences : negated conditional → NOT_SCHEDULED
        if (index == INDEX_NOT_FOUND) {
7924 7 1. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array);
7925
        }
7926
7927 7 1. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
2. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
3. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
4. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
5. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
6. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
7. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
        int[] indices = new int[array.length - index];
7928
        indices[0] = index;
7929
        int count = 1;
7930
7931 21 1. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
2. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
3. removeAllOccurences : negated conditional → NOT_SCHEDULED
4. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
5. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
6. removeAllOccurences : negated conditional → NOT_SCHEDULED
7. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
8. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
9. removeAllOccurences : negated conditional → NOT_SCHEDULED
10. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
11. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
12. removeAllOccurences : negated conditional → NOT_SCHEDULED
13. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
14. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
15. removeAllOccurences : negated conditional → NOT_SCHEDULED
16. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
17. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
18. removeAllOccurences : negated conditional → NOT_SCHEDULED
19. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
20. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
21. removeAllOccurences : negated conditional → NOT_SCHEDULED
        while ((index = indexOf(array, element, indices[count - 1] + 1)) != INDEX_NOT_FOUND) {
7932 7 1. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
2. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
3. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
4. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
5. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
6. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
7. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
            indices[count++] = index;
7933
        }
7934
7935 7 1. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return removeAll(array, Arrays.copyOf(indices, count));
7936
    }
7937
7938
    /**
7939
     * Removes the occurrences of the specified element from the specified array.
7940
     *
7941
     * <p>
7942
     * All subsequent elements are shifted to the left (subtracts one from their indices).
7943
     * If the array doesn't contains such an element, no elements are removed from the array.
7944
     * <code>null</code> will be returned if the input array is <code>null</code>.
7945
     * </p>
7946
     *
7947
     * @param <T> the type of object in the array
7948
     * @param element the element to remove
7949
     * @param array the input array
7950
     *
7951
     * @return A new array containing the existing elements except the occurrences of the specified element.
7952
     * @since 3.5
7953
     */
7954
    public static <T> T[] removeAllOccurences(final T[] array, final T element) {
7955
        int index = indexOf(array, element);
7956 7 1. removeAllOccurences : negated conditional → NOT_SCHEDULED
2. removeAllOccurences : negated conditional → NOT_SCHEDULED
3. removeAllOccurences : negated conditional → NOT_SCHEDULED
4. removeAllOccurences : negated conditional → NOT_SCHEDULED
5. removeAllOccurences : negated conditional → NOT_SCHEDULED
6. removeAllOccurences : negated conditional → NOT_SCHEDULED
7. removeAllOccurences : negated conditional → NOT_SCHEDULED
        if (index == INDEX_NOT_FOUND) {
7957 7 1. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
            return clone(array);
7958
        }
7959
7960 7 1. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
2. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
3. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
4. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
5. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
6. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
7. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
        int[] indices = new int[array.length - index];
7961
        indices[0] = index;
7962
        int count = 1;
7963
7964 21 1. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
2. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
3. removeAllOccurences : negated conditional → NOT_SCHEDULED
4. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
5. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
6. removeAllOccurences : negated conditional → NOT_SCHEDULED
7. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
8. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
9. removeAllOccurences : negated conditional → NOT_SCHEDULED
10. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
11. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
12. removeAllOccurences : negated conditional → NOT_SCHEDULED
13. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
14. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
15. removeAllOccurences : negated conditional → NOT_SCHEDULED
16. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
17. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
18. removeAllOccurences : negated conditional → NOT_SCHEDULED
19. removeAllOccurences : Replaced integer subtraction with addition → NOT_SCHEDULED
20. removeAllOccurences : Replaced integer addition with subtraction → NOT_SCHEDULED
21. removeAllOccurences : negated conditional → NOT_SCHEDULED
        while ((index = indexOf(array, element, indices[count - 1] + 1)) != INDEX_NOT_FOUND) {
7965 7 1. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
2. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
3. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
4. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
5. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
6. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
7. removeAllOccurences : Changed increment from 1 to -1 → NOT_SCHEDULED
            indices[count++] = index;
7966
        }
7967
7968 7 1. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
2. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
3. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
4. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
5. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
6. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
7. removeAllOccurences : mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED
        return removeAll(array, Arrays.copyOf(indices, count));
7969
    }
7970
}

Mutations

160

1.1
Location : toString
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toString
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toString
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toString
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toString
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toString
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toString
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

176

1.1
Location : toString
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toString
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toString
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toString
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toString
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toString
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toString
Killed by : none
negated conditional → NOT_SCHEDULED

177

1.1
Location : toString
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toString
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toString
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toString
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toString
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toString
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toString
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

179

1.1
Location : toString
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toString
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toString
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toString
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toString
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toString
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toString
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toString to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

191

1.1
Location : hashCode
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : hashCode
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : hashCode
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : hashCode
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : hashCode
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : hashCode
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : hashCode
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

208

1.1
Location : isEquals
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : isEquals
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isEquals
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : isEquals
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isEquals
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : isEquals
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isEquals
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

239

1.1
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

240

1.1
Location : toMap
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toMap to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toMap
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toMap to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toMap
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toMap to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toMap
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toMap to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toMap
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toMap to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toMap
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toMap to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toMap
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toMap to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

242

1.1
Location : toMap
Killed by : none
Replaced double multiplication with division → NOT_SCHEDULED

2.2
Location : toMap
Killed by : none
Replaced double multiplication with division → NOT_SCHEDULED

3.3
Location : toMap
Killed by : none
Replaced double multiplication with division → NOT_SCHEDULED

4.4
Location : toMap
Killed by : none
Replaced double multiplication with division → NOT_SCHEDULED

5.5
Location : toMap
Killed by : none
Replaced double multiplication with division → NOT_SCHEDULED

6.6
Location : toMap
Killed by : none
Replaced double multiplication with division → NOT_SCHEDULED

7.7
Location : toMap
Killed by : none
Replaced double multiplication with division → NOT_SCHEDULED

243

1.1
Location : toMap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : toMap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toMap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : toMap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toMap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : toMap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : toMap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : toMap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : toMap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : toMap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : toMap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : toMap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : toMap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : toMap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

245

1.1
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

248

1.1
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

250

1.1
Location : toMap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toMap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toMap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toMap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : toMap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : toMap
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testToMap(org.apache.commons.lang3.ArrayUtilsTest)
changed conditional boundary → KILLED

12.12
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : toMap
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testToMap(org.apache.commons.lang3.ArrayUtilsTest)
changed conditional boundary → KILLED

14.14
Location : toMap
Killed by : none
negated conditional → NOT_SCHEDULED

262

1.1
Location : toMap
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toMap to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toMap
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toMap to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toMap
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toMap to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toMap
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toMap to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toMap
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toMap to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toMap
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toMap to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toMap
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toMap to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

305

1.1
Location : toArray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toArray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toArray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toArray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toArray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toArray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toArray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toArray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toArray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toArray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toArray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toArray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toArray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toArray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

324

1.1
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

325

1.1
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

327

1.1
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

340

1.1
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

341

1.1
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

343

1.1
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

356

1.1
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

357

1.1
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

359

1.1
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

372

1.1
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

373

1.1
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

375

1.1
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

388

1.1
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

389

1.1
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

391

1.1
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

404

1.1
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

405

1.1
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

407

1.1
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

420

1.1
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

421

1.1
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

423

1.1
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

436

1.1
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

437

1.1
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

439

1.1
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

452

1.1
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : clone
Killed by : none
negated conditional → NOT_SCHEDULED

453

1.1
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

455

1.1
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : clone
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::clone to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

474

1.1
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

478

1.1
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

479

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

481

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

499

1.1
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

500

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

502

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

519

1.1
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

520

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

522

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

539

1.1
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

540

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

542

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

559

1.1
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

560

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

562

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

579

1.1
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

580

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

582

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

599

1.1
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

600

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

602

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

619

1.1
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

620

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

622

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

639

1.1
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

640

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

642

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

659

1.1
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

660

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

662

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

679

1.1
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

680

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

682

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

699

1.1
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

700

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

702

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

719

1.1
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

720

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

722

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

739

1.1
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

740

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

742

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

759

1.1
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

760

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

762

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

779

1.1
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

780

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

782

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

799

1.1
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

800

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

802

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

819

1.1
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

820

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

822

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

839

1.1
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

840

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

842

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

859

1.1
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

860

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

862

1.1
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : nullToEmpty
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::nullToEmpty to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

897

1.1
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

898

1.1
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

900

1.1
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

903

1.1
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

906

1.1
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

908

1.1
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

911

1.1
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

916

1.1
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

917

1.1
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

941

1.1
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

942

1.1
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

944

1.1
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

947

1.1
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

950

1.1
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

951

1.1
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

952

1.1
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

956

1.1
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

957

1.1
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

981

1.1
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

982

1.1
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

984

1.1
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

987

1.1
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

990

1.1
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

991

1.1
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

992

1.1
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

996

1.1
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

997

1.1
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

1021

1.1
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

1022

1.1
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

1024

1.1
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

1027

1.1
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

1030

1.1
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

1031

1.1
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

1032

1.1
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

1036

1.1
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

1037

1.1
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

1061

1.1
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

1062

1.1
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

1064

1.1
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

1067

1.1
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

1070

1.1
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

1071

1.1
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

1072

1.1
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

1076

1.1
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

1077

1.1
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

1101

1.1
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

1102

1.1
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

1104

1.1
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

1107

1.1
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

1110

1.1
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

1111

1.1
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

1112

1.1
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

1116

1.1
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

1117

1.1
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

1141

1.1
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

1142

1.1
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

1144

1.1
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

1147

1.1
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

1150

1.1
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

1151

1.1
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

1152

1.1
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

1156

1.1
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

1157

1.1
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

1181

1.1
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

1182

1.1
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

1184

1.1
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : subarray
Killed by : none
changed conditional boundary → SURVIVED

10.10
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : subarray
Killed by : none
changed conditional boundary → SURVIVED

12.12
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : subarray
Killed by : none
changed conditional boundary → SURVIVED

14.14
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

1187

1.1
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

1190

1.1
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

1191

1.1
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

1192

1.1
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

1196

1.1
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

1197

1.1
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

1221

1.1
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

1222

1.1
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

1224

1.1
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

1227

1.1
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

1230

1.1
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

1231

1.1
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : subarray
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : subarray
Killed by : none
negated conditional → NOT_SCHEDULED

1232

1.1
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : subarray
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testSubarrayBoolean(org.apache.commons.lang3.ArrayUtilsTest)
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → KILLED

4.4
Location : subarray
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testSubarrayBoolean(org.apache.commons.lang3.ArrayUtilsTest)
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → KILLED

5.5
Location : subarray
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testSubarrayBoolean(org.apache.commons.lang3.ArrayUtilsTest)
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → KILLED

6.6
Location : subarray
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testSubarrayBoolean(org.apache.commons.lang3.ArrayUtilsTest)
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → KILLED

7.7
Location : subarray
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testSubarrayBoolean(org.apache.commons.lang3.ArrayUtilsTest)
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → KILLED

1236

1.1
Location : subarray
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

2.2
Location : subarray
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testSubarrayBoolean(org.apache.commons.lang3.ArrayUtilsTest)
removed call to java/lang/System::arraycopy → KILLED

3.3
Location : subarray
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testSubarrayBoolean(org.apache.commons.lang3.ArrayUtilsTest)
removed call to java/lang/System::arraycopy → KILLED

4.4
Location : subarray
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testSubarrayBoolean(org.apache.commons.lang3.ArrayUtilsTest)
removed call to java/lang/System::arraycopy → KILLED

5.5
Location : subarray
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testSubarrayBoolean(org.apache.commons.lang3.ArrayUtilsTest)
removed call to java/lang/System::arraycopy → KILLED

6.6
Location : subarray
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testSubarrayBoolean(org.apache.commons.lang3.ArrayUtilsTest)
removed call to java/lang/System::arraycopy → KILLED

7.7
Location : subarray
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testSubarrayBoolean(org.apache.commons.lang3.ArrayUtilsTest)
removed call to java/lang/System::arraycopy → KILLED

1237

1.1
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : subarray
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::subarray to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

1254

1.1
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

1267

1.1
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

1280

1.1
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

1293

1.1
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

1306

1.1
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

1319

1.1
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

1332

1.1
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

1345

1.1
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

1358

1.1
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : isSameLength
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : isSameLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

1383

1.1
Location : getLength
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : getLength
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : getLength
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : getLength
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : getLength
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : getLength
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : getLength
Killed by : none
negated conditional → NOT_SCHEDULED

1384

1.1
Location : getLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : getLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : getLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : getLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : getLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : getLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : getLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

1386

1.1
Location : getLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : getLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : getLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : getLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : getLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : getLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : getLength
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

1399

1.1
Location : isSameType
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : isSameType
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : isSameType
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isSameType
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : isSameType
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isSameType
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : isSameType
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : isSameType
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : isSameType
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isSameType
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : isSameType
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isSameType
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : isSameType
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : isSameType
Killed by : none
negated conditional → NOT_SCHEDULED

1402

1.1
Location : isSameType
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : isSameType
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSameType
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : isSameType
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSameType
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : isSameType
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSameType
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

1417

1.1
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1420

1.1
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

1431

1.1
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1434

1.1
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

1445

1.1
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1448

1.1
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

1459

1.1
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1462

1.1
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

1473

1.1
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1476

1.1
Location : reverse
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testReverseChar(org.apache.commons.lang3.ArrayUtilsTest)
removed call to org/apache/commons/lang3/ArrayUtils::reverse → KILLED

2.2
Location : reverse
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testReverseChar(org.apache.commons.lang3.ArrayUtilsTest)
removed call to org/apache/commons/lang3/ArrayUtils::reverse → KILLED

3.3
Location : reverse
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testReverseChar(org.apache.commons.lang3.ArrayUtilsTest)
removed call to org/apache/commons/lang3/ArrayUtils::reverse → KILLED

4.4
Location : reverse
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testReverseChar(org.apache.commons.lang3.ArrayUtilsTest)
removed call to org/apache/commons/lang3/ArrayUtils::reverse → KILLED

5.5
Location : reverse
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testReverseChar(org.apache.commons.lang3.ArrayUtilsTest)
removed call to org/apache/commons/lang3/ArrayUtils::reverse → KILLED

6.6
Location : reverse
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testReverseChar(org.apache.commons.lang3.ArrayUtilsTest)
removed call to org/apache/commons/lang3/ArrayUtils::reverse → KILLED

7.7
Location : reverse
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testReverseChar(org.apache.commons.lang3.ArrayUtilsTest)
removed call to org/apache/commons/lang3/ArrayUtils::reverse → KILLED

1487

1.1
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1490

1.1
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

1501

1.1
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1504

1.1
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

1515

1.1
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1518

1.1
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

1529

1.1
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1532

1.1
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::reverse → NOT_SCHEDULED

1553

1.1
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1556

1.1
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1557

1.1
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

1559

1.1
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1563

1.1
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

1564

1.1
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

1586

1.1
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1589

1.1
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1590

1.1
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

1592

1.1
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1596

1.1
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

1597

1.1
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

1619

1.1
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1622

1.1
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1623

1.1
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

1625

1.1
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1629

1.1
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

1630

1.1
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

1652

1.1
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1655

1.1
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1656

1.1
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

1658

1.1
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1662

1.1
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

1663

1.1
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

1685

1.1
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1688

1.1
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1689

1.1
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

1691

1.1
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1695

1.1
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

1696

1.1
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

1718

1.1
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1721

1.1
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1722

1.1
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

1724

1.1
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1728

1.1
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

1729

1.1
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

1751

1.1
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1754

1.1
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1755

1.1
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

1757

1.1
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : reverse
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testReverseLong(org.apache.commons.lang3.ArrayUtilsTest)
negated conditional → KILLED

5.5
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : reverse
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testReverseLong(org.apache.commons.lang3.ArrayUtilsTest)
negated conditional → KILLED

7.7
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : reverse
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testReverseLong(org.apache.commons.lang3.ArrayUtilsTest)
negated conditional → KILLED

9.9
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : reverse
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testReverseLong(org.apache.commons.lang3.ArrayUtilsTest)
negated conditional → KILLED

11.11
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : reverse
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testReverseLong(org.apache.commons.lang3.ArrayUtilsTest)
negated conditional → KILLED

13.13
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : reverse
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testReverseLong(org.apache.commons.lang3.ArrayUtilsTest)
negated conditional → KILLED

1761

1.1
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

3.3
Location : reverse
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testReverseLong(org.apache.commons.lang3.ArrayUtilsTest)
Changed increment from -1 to 1 → KILLED

4.4
Location : reverse
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testReverseLong(org.apache.commons.lang3.ArrayUtilsTest)
Changed increment from -1 to 1 → KILLED

5.5
Location : reverse
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testReverseLong(org.apache.commons.lang3.ArrayUtilsTest)
Changed increment from -1 to 1 → KILLED

6.6
Location : reverse
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testReverseLong(org.apache.commons.lang3.ArrayUtilsTest)
Changed increment from -1 to 1 → KILLED

7.7
Location : reverse
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testReverseLong(org.apache.commons.lang3.ArrayUtilsTest)
Changed increment from -1 to 1 → KILLED

1762

1.1
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

1784

1.1
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1787

1.1
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1788

1.1
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

1790

1.1
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1794

1.1
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

1795

1.1
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

1817

1.1
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1820

1.1
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1821

1.1
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

1823

1.1
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : reverse
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : reverse
Killed by : none
negated conditional → NOT_SCHEDULED

1827

1.1
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

1828

1.1
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

2.2
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

4.4
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

5.5
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

7.7
Location : reverse
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

1856

1.1
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

1859

1.1
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

1885

1.1
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

1888

1.1
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

1913

1.1
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

1916

1.1
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

1941

1.1
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

4.4
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

5.5
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

8.8
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

9.9
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

10.10
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

11.11
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

12.12
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

13.13
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

14.14
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

1944

1.1
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

2.2
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

3.3
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

4.4
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

5.5
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

6.6
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

7.7
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

1969

1.1
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

1972

1.1
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

1997

1.1
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

4.4
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

5.5
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

8.8
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

9.9
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

10.10
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

11.11
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

12.12
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

13.13
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

14.14
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

2000

1.1
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

2.2
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

3.3
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

4.4
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

5.5
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

6.6
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

7.7
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

2025

1.1
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : swap
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testSwapDouble(org.apache.commons.lang3.ArrayUtilsTest)
negated conditional → KILLED

5.5
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : swap
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testSwapDouble(org.apache.commons.lang3.ArrayUtilsTest)
negated conditional → KILLED

7.7
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : swap
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testSwapDouble(org.apache.commons.lang3.ArrayUtilsTest)
negated conditional → KILLED

9.9
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : swap
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testSwapDouble(org.apache.commons.lang3.ArrayUtilsTest)
negated conditional → KILLED

11.11
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : swap
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testSwapDouble(org.apache.commons.lang3.ArrayUtilsTest)
negated conditional → KILLED

13.13
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : swap
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testSwapDouble(org.apache.commons.lang3.ArrayUtilsTest)
negated conditional → KILLED

2028

1.1
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

2053

1.1
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2056

1.1
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

2081

1.1
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

4.4
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

5.5
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

8.8
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

9.9
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

10.10
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

11.11
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

12.12
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

13.13
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

14.14
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

2084

1.1
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

2.2
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

3.3
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

4.4
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

5.5
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

6.6
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

7.7
Location : swap
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

2112

1.1
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

3.3
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

4.4
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

5.5
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

8.8
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

9.9
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

10.10
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

11.11
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

12.12
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

13.13
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

14.14
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

15.15
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

16.16
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

17.17
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

18.18
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

19.19
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

20.20
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

21.21
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

22.22
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

23.23
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

24.24
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

25.25
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

26.26
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

27.27
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

28.28
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

29.29
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

30.30
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

31.31
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

32.32
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

33.33
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

34.34
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

35.35
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

36.36
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

37.37
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

38.38
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

39.39
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

40.40
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

41.41
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

42.42
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

2115

1.1
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

4.4
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

5.5
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

8.8
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

9.9
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

10.10
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

11.11
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

12.12
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

13.13
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

14.14
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

2118

1.1
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

4.4
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

5.5
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

8.8
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

9.9
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

10.10
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

11.11
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

12.12
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

13.13
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

14.14
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

2121

1.1
Location : swap
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

2.2
Location : swap
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

3.3
Location : swap
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

4.4
Location : swap
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

5.5
Location : swap
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

6.6
Location : swap
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

7.7
Location : swap
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

8.8
Location : swap
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

9.9
Location : swap
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

10.10
Location : swap
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

11.11
Location : swap
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

12.12
Location : swap
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

13.13
Location : swap
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

14.14
Location : swap
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

2122

1.1
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : swap
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location : swap
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

4.4
Location : swap
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

5.5
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

7.7
Location : swap
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

8.8
Location : swap
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

9.9
Location : swap
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

10.10
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

11.11
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

12.12
Location : swap
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

13.13
Location : swap
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

14.14
Location : swap
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

15.15
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

16.16
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

17.17
Location : swap
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

18.18
Location : swap
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

19.19
Location : swap
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

20.20
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

21.21
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

22.22
Location : swap
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

23.23
Location : swap
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

24.24
Location : swap
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

25.25
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

26.26
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

27.27
Location : swap
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

28.28
Location : swap
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

29.29
Location : swap
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

30.30
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

31.31
Location : swap
Killed by : none
changed conditional boundary → NO_COVERAGE

32.32
Location : swap
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

33.33
Location : swap
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

34.34
Location : swap
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

35.35
Location : swap
Killed by : none
negated conditional → NO_COVERAGE

2154

1.1
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

15.15
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

17.17
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

18.18
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

21.21
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

22.22
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

23.23
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

24.24
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

25.25
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

26.26
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

28.28
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

29.29
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

30.30
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

31.31
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

32.32
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

33.33
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

34.34
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

35.35
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

36.36
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

37.37
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

38.38
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

39.39
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

40.40
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

41.41
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

42.42
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2157

1.1
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2160

1.1
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2163

1.1
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2164

1.1
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

19.19
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

20.20
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

22.22
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

23.23
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

24.24
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

25.25
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

26.26
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

28.28
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

29.29
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

30.30
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

31.31
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

32.32
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

33.33
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

34.34
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

35.35
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2196

1.1
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

15.15
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

17.17
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

18.18
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

21.21
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

22.22
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

23.23
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

24.24
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

25.25
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

26.26
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

28.28
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

29.29
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

30.30
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

31.31
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

32.32
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

33.33
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

34.34
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

35.35
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

36.36
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

37.37
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

38.38
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

39.39
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

40.40
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

41.41
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

42.42
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2199

1.1
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2202

1.1
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2205

1.1
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2206

1.1
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : swap
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testSwapChar(org.apache.commons.lang3.ArrayUtilsTest)
changed conditional boundary → KILLED

7.7
Location : swap
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testSwapChar(org.apache.commons.lang3.ArrayUtilsTest)
Changed increment from 1 to -1 → KILLED

8.8
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testSwapChar(org.apache.commons.lang3.ArrayUtilsTest)
changed conditional boundary → KILLED

12.12
Location : swap
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testSwapChar(org.apache.commons.lang3.ArrayUtilsTest)
Changed increment from 1 to -1 → KILLED

13.13
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : swap
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testSwapChar(org.apache.commons.lang3.ArrayUtilsTest)
changed conditional boundary → KILLED

17.17
Location : swap
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testSwapChar(org.apache.commons.lang3.ArrayUtilsTest)
Changed increment from 1 to -1 → KILLED

18.18
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

19.19
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

20.20
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : swap
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testSwapChar(org.apache.commons.lang3.ArrayUtilsTest)
changed conditional boundary → KILLED

22.22
Location : swap
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testSwapChar(org.apache.commons.lang3.ArrayUtilsTest)
Changed increment from 1 to -1 → KILLED

23.23
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

24.24
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

25.25
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

26.26
Location : swap
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testSwapChar(org.apache.commons.lang3.ArrayUtilsTest)
changed conditional boundary → KILLED

27.27
Location : swap
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testSwapChar(org.apache.commons.lang3.ArrayUtilsTest)
Changed increment from 1 to -1 → KILLED

28.28
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

29.29
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

30.30
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

31.31
Location : swap
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testSwapChar(org.apache.commons.lang3.ArrayUtilsTest)
changed conditional boundary → KILLED

32.32
Location : swap
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testSwapChar(org.apache.commons.lang3.ArrayUtilsTest)
Changed increment from 1 to -1 → KILLED

33.33
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

34.34
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

35.35
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2238

1.1
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

15.15
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

17.17
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

18.18
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

21.21
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

22.22
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

23.23
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

24.24
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

25.25
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

26.26
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

28.28
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

29.29
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

30.30
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

31.31
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

32.32
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

33.33
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

34.34
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

35.35
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

36.36
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

37.37
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

38.38
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

39.39
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

40.40
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

41.41
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

42.42
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2241

1.1
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2244

1.1
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2247

1.1
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2248

1.1
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

19.19
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

20.20
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

22.22
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

23.23
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

24.24
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

25.25
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

26.26
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

28.28
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

29.29
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

30.30
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

31.31
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

32.32
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

33.33
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

34.34
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

35.35
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2280

1.1
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

15.15
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

17.17
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

18.18
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

21.21
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

22.22
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

23.23
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

24.24
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

25.25
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

26.26
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

28.28
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

29.29
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

30.30
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

31.31
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

32.32
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

33.33
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

34.34
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

35.35
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

36.36
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

37.37
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

38.38
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

39.39
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

40.40
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

41.41
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

42.42
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2283

1.1
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2286

1.1
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2289

1.1
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2290

1.1
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

19.19
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

20.20
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

22.22
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

23.23
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

24.24
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

25.25
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

26.26
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

28.28
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

29.29
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

30.30
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

31.31
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

32.32
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

33.33
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

34.34
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

35.35
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2323

1.1
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

15.15
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

17.17
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

18.18
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

21.21
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

22.22
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

23.23
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

24.24
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

25.25
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

26.26
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

28.28
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

29.29
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

30.30
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

31.31
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

32.32
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

33.33
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

34.34
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

35.35
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

36.36
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

37.37
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

38.38
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

39.39
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

40.40
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

41.41
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

42.42
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2326

1.1
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2329

1.1
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2332

1.1
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2333

1.1
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

19.19
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

20.20
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

22.22
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

23.23
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

24.24
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

25.25
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

26.26
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

28.28
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

29.29
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

30.30
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

31.31
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

32.32
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

33.33
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

34.34
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

35.35
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2365

1.1
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

15.15
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

17.17
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

18.18
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

21.21
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

22.22
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

23.23
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

24.24
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

25.25
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

26.26
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

28.28
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

29.29
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

30.30
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

31.31
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

32.32
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

33.33
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

34.34
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

35.35
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

36.36
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

37.37
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

38.38
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

39.39
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

40.40
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

41.41
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

42.42
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2368

1.1
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2371

1.1
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2374

1.1
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2375

1.1
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

19.19
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

20.20
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

22.22
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

23.23
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

24.24
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

25.25
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

26.26
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

28.28
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

29.29
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

30.30
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

31.31
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

32.32
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

33.33
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

34.34
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

35.35
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2407

1.1
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

15.15
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

17.17
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

18.18
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

21.21
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

22.22
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

23.23
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

24.24
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

25.25
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

26.26
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

28.28
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

29.29
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

30.30
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

31.31
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

32.32
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

33.33
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

34.34
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

35.35
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

36.36
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

37.37
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

38.38
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

39.39
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

40.40
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

41.41
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

42.42
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2410

1.1
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2413

1.1
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2416

1.1
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2417

1.1
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

19.19
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

20.20
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

22.22
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

23.23
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

24.24
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

25.25
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

26.26
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

28.28
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

29.29
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

30.30
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

31.31
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

32.32
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

33.33
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

34.34
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

35.35
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2449

1.1
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

15.15
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

17.17
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

18.18
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

21.21
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

22.22
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

23.23
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

24.24
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

25.25
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

26.26
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

28.28
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

29.29
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

30.30
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

31.31
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

32.32
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

33.33
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

34.34
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

35.35
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

36.36
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

37.37
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

38.38
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

39.39
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

40.40
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

41.41
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

42.42
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2452

1.1
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2455

1.1
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2458

1.1
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2461

1.1
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2462

1.1
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

4.4
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

5.5
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

7.7
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

8.8
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

10.10
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

13.13
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

14.14
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

19.19
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

20.20
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

22.22
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

23.23
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

24.24
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

25.25
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

26.26
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

28.28
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

29.29
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

30.30
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

31.31
Location : swap
Killed by : none
changed conditional boundary → NOT_SCHEDULED

32.32
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

33.33
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

34.34
Location : swap
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

35.35
Location : swap
Killed by : none
negated conditional → NOT_SCHEDULED

2484

1.1
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2487

1.1
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

2503

1.1
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2506

1.1
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

2522

1.1
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2525

1.1
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

2541

1.1
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2544

1.1
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

2560

1.1
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2563

1.1
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

2579

1.1
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2582

1.1
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

2598

1.1
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2601

1.1
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

3.3
Location : shift
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testShiftDouble(org.apache.commons.lang3.ArrayUtilsTest)
removed call to org/apache/commons/lang3/ArrayUtils::shift → KILLED

4.4
Location : shift
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testShiftDouble(org.apache.commons.lang3.ArrayUtilsTest)
removed call to org/apache/commons/lang3/ArrayUtils::shift → KILLED

5.5
Location : shift
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testShiftDouble(org.apache.commons.lang3.ArrayUtilsTest)
removed call to org/apache/commons/lang3/ArrayUtils::shift → KILLED

6.6
Location : shift
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testShiftDouble(org.apache.commons.lang3.ArrayUtilsTest)
removed call to org/apache/commons/lang3/ArrayUtils::shift → KILLED

7.7
Location : shift
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testShiftDouble(org.apache.commons.lang3.ArrayUtilsTest)
removed call to org/apache/commons/lang3/ArrayUtils::shift → KILLED

2617

1.1
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2620

1.1
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NOT_SCHEDULED

2636

1.1
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

4.4
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

5.5
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

2639

1.1
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NO_COVERAGE

2.2
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NO_COVERAGE

3.3
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NO_COVERAGE

4.4
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NO_COVERAGE

5.5
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NO_COVERAGE

6.6
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NO_COVERAGE

7.7
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::shift → NO_COVERAGE

2662

1.1
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

4.4
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

5.5
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

2665

1.1
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

4.4
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

5.5
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

7.7
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

8.8
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

9.9
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

10.10
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

11.11
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

12.12
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

13.13
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

14.14
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

15.15
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

16.16
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

17.17
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

18.18
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

19.19
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

20.20
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

21.21
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

22.22
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

23.23
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

24.24
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

25.25
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

26.26
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

27.27
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

28.28
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

29.29
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

30.30
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

31.31
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

32.32
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

33.33
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

34.34
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

35.35
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

2668

1.1
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

4.4
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

5.5
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

8.8
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

9.9
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

10.10
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

11.11
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

12.12
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

13.13
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

14.14
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

2671

1.1
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

4.4
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

5.5
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

8.8
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

9.9
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

10.10
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

11.11
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

12.12
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

13.13
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

14.14
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

2674

1.1
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

4.4
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

6.6
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

7.7
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

2675

1.1
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

4.4
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

5.5
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

8.8
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

9.9
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

10.10
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

11.11
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

12.12
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

13.13
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

14.14
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

2678

1.1
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NO_COVERAGE

2.2
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NO_COVERAGE

3.3
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NO_COVERAGE

4.4
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NO_COVERAGE

5.5
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NO_COVERAGE

6.6
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NO_COVERAGE

7.7
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NO_COVERAGE

2679

1.1
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

4.4
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

5.5
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

8.8
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

9.9
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

10.10
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

11.11
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

12.12
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

13.13
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

14.14
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

2680

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

2.2
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

4.4
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

6.6
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

2684

1.1
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

3.3
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

4.4
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

5.5
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

7.7
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

8.8
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

9.9
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

10.10
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

11.11
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

12.12
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

13.13
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

14.14
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

15.15
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

16.16
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

17.17
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

18.18
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

19.19
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

20.20
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

21.21
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

22.22
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

23.23
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

24.24
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

25.25
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

26.26
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

27.27
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

28.28
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

2685

1.1
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

4.4
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

6.6
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

7.7
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

2687

1.1
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

4.4
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

5.5
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

8.8
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

9.9
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

10.10
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

11.11
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

12.12
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

13.13
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

14.14
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

2688

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

3.3
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

4.4
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

6.6
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

8.8
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

9.9
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

10.10
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

11.11
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

12.12
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

13.13
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

14.14
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

15.15
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

16.16
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

17.17
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

18.18
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

19.19
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

20.20
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

21.21
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

2690

1.1
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

4.4
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

6.6
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

7.7
Location : shift
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

2691

1.1
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

4.4
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

5.5
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

6.6
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

8.8
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

9.9
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

10.10
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

11.11
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

12.12
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

13.13
Location : shift
Killed by : none
changed conditional boundary → NO_COVERAGE

14.14
Location : shift
Killed by : none
negated conditional → NO_COVERAGE

2692

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

2.2
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

4.4
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

6.6
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

8.8
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

9.9
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

10.10
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

11.11
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

12.12
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

13.13
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

14.14
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

2693

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

2.2
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

4.4
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

6.6
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

2696

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

2.2
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

4.4
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

6.6
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

8.8
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

9.9
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

10.10
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

11.11
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

12.12
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

13.13
Location : shift
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

14.14
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NO_COVERAGE

2722

1.1
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2725

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

15.15
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

18.18
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

19.19
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

20.20
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

22.22
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

23.23
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

24.24
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

25.25
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

26.26
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

28.28
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

29.29
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

30.30
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

31.31
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

32.32
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

33.33
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

34.34
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

35.35
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2728

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2731

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2734

1.1
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2735

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2738

1.1
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

2739

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2740

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2744

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → SURVIVED

6.6
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → SURVIVED

10.10
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → SURVIVED

14.14
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

15.15
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

17.17
Location : shift
Killed by : none
changed conditional boundary → SURVIVED

18.18
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

19.19
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

20.20
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : shift
Killed by : none
changed conditional boundary → SURVIVED

22.22
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

23.23
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

24.24
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

25.25
Location : shift
Killed by : none
changed conditional boundary → SURVIVED

26.26
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

28.28
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2745

1.1
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2747

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2748

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

15.15
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

16.16
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

17.17
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

18.18
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

19.19
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

20.20
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

21.21
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

2750

1.1
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2751

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2752

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

2753

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2756

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : shift
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testShiftByte(org.apache.commons.lang3.ArrayUtilsTest)
removed call to org/apache/commons/lang3/ArrayUtils::swap → KILLED

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : shift
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testShiftByte(org.apache.commons.lang3.ArrayUtilsTest)
removed call to org/apache/commons/lang3/ArrayUtils::swap → KILLED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

8.8
Location : shift
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testShiftByte(org.apache.commons.lang3.ArrayUtilsTest)
removed call to org/apache/commons/lang3/ArrayUtils::swap → KILLED

9.9
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

10.10
Location : shift
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testShiftByte(org.apache.commons.lang3.ArrayUtilsTest)
removed call to org/apache/commons/lang3/ArrayUtils::swap → KILLED

11.11
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

12.12
Location : shift
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testShiftByte(org.apache.commons.lang3.ArrayUtilsTest)
removed call to org/apache/commons/lang3/ArrayUtils::swap → KILLED

13.13
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

14.14
Location : shift
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testShiftByte(org.apache.commons.lang3.ArrayUtilsTest)
removed call to org/apache/commons/lang3/ArrayUtils::swap → KILLED

2782

1.1
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2785

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

15.15
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

18.18
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

19.19
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

20.20
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

22.22
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

23.23
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

24.24
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

25.25
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

26.26
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

28.28
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

29.29
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

30.30
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

31.31
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

32.32
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

33.33
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

34.34
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

35.35
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2788

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2791

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2794

1.1
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2795

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2798

1.1
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

2799

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2800

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2804

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

15.15
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

17.17
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

18.18
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

19.19
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

20.20
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

22.22
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

23.23
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

24.24
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

25.25
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

26.26
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

28.28
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2805

1.1
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2807

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2808

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

15.15
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

16.16
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

17.17
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

18.18
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

19.19
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

20.20
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

21.21
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

2810

1.1
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2811

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → SURVIVED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2812

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

2813

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2816

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

2842

1.1
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2845

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

15.15
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

18.18
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

19.19
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

20.20
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

22.22
Location : shift
Killed by : none
changed conditional boundary → SURVIVED

23.23
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

24.24
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

25.25
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

26.26
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : shift
Killed by : none
changed conditional boundary → SURVIVED

28.28
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

29.29
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

30.30
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

31.31
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

32.32
Location : shift
Killed by : none
changed conditional boundary → SURVIVED

33.33
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

34.34
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

35.35
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2848

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2851

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2854

1.1
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2855

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2858

1.1
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

2859

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2860

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2864

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

15.15
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

17.17
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

18.18
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

19.19
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

20.20
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

22.22
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

23.23
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

24.24
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

25.25
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

26.26
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

28.28
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2865

1.1
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2867

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2868

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

15.15
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

16.16
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

17.17
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

18.18
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

19.19
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

20.20
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

21.21
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

2870

1.1
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2871

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2872

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

2873

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2876

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

2902

1.1
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2905

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

15.15
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

18.18
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

19.19
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

20.20
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

22.22
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

23.23
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

24.24
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

25.25
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

26.26
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

28.28
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

29.29
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

30.30
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

31.31
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

32.32
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

33.33
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

34.34
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

35.35
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2908

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2911

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2914

1.1
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2915

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2918

1.1
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

2919

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2920

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2924

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

15.15
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

17.17
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

18.18
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

19.19
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

20.20
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

22.22
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

23.23
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

24.24
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

25.25
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

26.26
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

28.28
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2925

1.1
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2927

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2928

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

15.15
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

16.16
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

17.17
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

18.18
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

19.19
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

20.20
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

21.21
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

2930

1.1
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2931

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2932

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

2933

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2936

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

2962

1.1
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2965

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
changed conditional boundary → SURVIVED

13.13
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

15.15
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : shift
Killed by : none
changed conditional boundary → SURVIVED

18.18
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

19.19
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

20.20
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

22.22
Location : shift
Killed by : none
changed conditional boundary → SURVIVED

23.23
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

24.24
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

25.25
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

26.26
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : shift
Killed by : none
changed conditional boundary → SURVIVED

28.28
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

29.29
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

30.30
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

31.31
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

32.32
Location : shift
Killed by : none
changed conditional boundary → SURVIVED

33.33
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

34.34
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

35.35
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2968

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2971

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2974

1.1
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2975

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2978

1.1
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

2979

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → TIMED_OUT

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2980

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2984

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

15.15
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

17.17
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

18.18
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

19.19
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

20.20
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

22.22
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

23.23
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

24.24
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

25.25
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

26.26
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

28.28
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2985

1.1
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2987

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2988

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

15.15
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

16.16
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

17.17
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

18.18
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

19.19
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

20.20
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

21.21
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

2990

1.1
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2991

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2992

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

2993

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2996

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

3022

1.1
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3025

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

15.15
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

18.18
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

19.19
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

20.20
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

22.22
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

23.23
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

24.24
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

25.25
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

26.26
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

28.28
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

29.29
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

30.30
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

31.31
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

32.32
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

33.33
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

34.34
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

35.35
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3028

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3031

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3034

1.1
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3035

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3038

1.1
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

3039

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3040

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3044

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

15.15
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

17.17
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

18.18
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

19.19
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

20.20
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

22.22
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

23.23
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

24.24
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

25.25
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

26.26
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

28.28
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3045

1.1
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3047

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3048

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

15.15
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

16.16
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

17.17
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

18.18
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

19.19
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

20.20
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

21.21
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

3050

1.1
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3051

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3052

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

3053

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3056

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

3082

1.1
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3085

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

15.15
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

18.18
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

19.19
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

20.20
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

22.22
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

23.23
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

24.24
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

25.25
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

26.26
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

28.28
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

29.29
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

30.30
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

31.31
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

32.32
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

33.33
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

34.34
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

35.35
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3088

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3091

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3094

1.1
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3095

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3098

1.1
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

3099

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3100

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3104

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

15.15
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

17.17
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

18.18
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

19.19
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

20.20
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

22.22
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

23.23
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

24.24
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

25.25
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

26.26
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

28.28
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3105

1.1
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3107

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3108

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

15.15
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

16.16
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

17.17
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

18.18
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

19.19
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

20.20
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

21.21
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

3110

1.1
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3111

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3112

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

3113

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3116

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

3142

1.1
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3145

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

15.15
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

18.18
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

19.19
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

20.20
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

22.22
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

23.23
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

24.24
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

25.25
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

26.26
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

28.28
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

29.29
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

30.30
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

31.31
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

32.32
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

33.33
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

34.34
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

35.35
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3148

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3151

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3154

1.1
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3155

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3158

1.1
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer modulus with multiplication → NOT_SCHEDULED

3159

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → TIMED_OUT

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → TIMED_OUT

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → TIMED_OUT

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → TIMED_OUT

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → TIMED_OUT

3160

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3164

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

15.15
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

17.17
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

18.18
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

19.19
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

20.20
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

22.22
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

23.23
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

24.24
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

25.25
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

26.26
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

28.28
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3165

1.1
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3167

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3168

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

7.7
Location : shift
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testShiftRangeShort(org.apache.commons.lang3.ArrayUtilsTest)
Replaced integer addition with subtraction → KILLED

8.8
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

10.10
Location : shift
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testShiftRangeShort(org.apache.commons.lang3.ArrayUtilsTest)
Replaced integer addition with subtraction → KILLED

11.11
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

13.13
Location : shift
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testShiftRangeShort(org.apache.commons.lang3.ArrayUtilsTest)
Replaced integer addition with subtraction → KILLED

14.14
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

15.15
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

16.16
Location : shift
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testShiftRangeShort(org.apache.commons.lang3.ArrayUtilsTest)
Replaced integer addition with subtraction → KILLED

17.17
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

18.18
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

19.19
Location : shift
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testShiftRangeShort(org.apache.commons.lang3.ArrayUtilsTest)
Replaced integer addition with subtraction → KILLED

20.20
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

21.21
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

3170

1.1
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3171

1.1
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
negated conditional → NOT_SCHEDULED

3172

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

3173

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3176

1.1
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

3.3
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

5.5
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

7.7
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

8.8
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

9.9
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

10.10
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

11.11
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

12.12
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

13.13
Location : shift
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

14.14
Location : shift
Killed by : none
removed call to org/apache/commons/lang3/ArrayUtils::swap → NOT_SCHEDULED

3198

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3216

1.1
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3217

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3219

1.1
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3222

1.1
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3223

1.1
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3224

1.1
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3225

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3229

1.1
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testIndexOf(org.apache.commons.lang3.ArrayUtilsTest)
changed conditional boundary → KILLED

8.8
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : indexOf
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testIndexOf(org.apache.commons.lang3.ArrayUtilsTest)
changed conditional boundary → KILLED

11.11
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : indexOf
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testIndexOf(org.apache.commons.lang3.ArrayUtilsTest)
changed conditional boundary → KILLED

14.14
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : indexOf
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testIndexOf(org.apache.commons.lang3.ArrayUtilsTest)
changed conditional boundary → KILLED

17.17
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : indexOf
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testIndexOf(org.apache.commons.lang3.ArrayUtilsTest)
changed conditional boundary → KILLED

20.20
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3230

1.1
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3231

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3235

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3249

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3267

1.1
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3268

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3270

1.1
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3271

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3272

1.1
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3273

1.1
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3275

1.1
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3276

1.1
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

9.9
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

12.12
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

15.15
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

18.18
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

21.21
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3277

1.1
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3278

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3281

1.1
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3282

1.1
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

9.9
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

12.12
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

15.15
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

18.18
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

21.21
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3283

1.1
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3284

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3288

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3301

1.1
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3317

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3335

1.1
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3336

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3338

1.1
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : indexOf
Killed by : none
changed conditional boundary → SURVIVED

12.12
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : indexOf
Killed by : none
changed conditional boundary → SURVIVED

14.14
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3341

1.1
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3342

1.1
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3343

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3346

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3360

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3378

1.1
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3379

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3381

1.1
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : lastIndexOf
Killed by : none
changed conditional boundary → SURVIVED

12.12
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : lastIndexOf
Killed by : none
changed conditional boundary → SURVIVED

14.14
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3382

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3383

1.1
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3384

1.1
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3386

1.1
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

9.9
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

12.12
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

15.15
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

18.18
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

21.21
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3387

1.1
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3388

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3391

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3404

1.1
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3420

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3438

1.1
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3439

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3441

1.1
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3444

1.1
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3445

1.1
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3446

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3449

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3463

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3481

1.1
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3482

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3484

1.1
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3485

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3486

1.1
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3487

1.1
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3489

1.1
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

9.9
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

12.12
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

15.15
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

18.18
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

21.21
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3490

1.1
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3491

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3494

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3507

1.1
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3523

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3541

1.1
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3542

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3544

1.1
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3547

1.1
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3548

1.1
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3549

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3552

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3566

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3584

1.1
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3585

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3587

1.1
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3588

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3589

1.1
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3590

1.1
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3592

1.1
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

9.9
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

12.12
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

15.15
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

18.18
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

21.21
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3593

1.1
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3594

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3597

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testLastIndexOfShortWithStartIndex(org.apache.commons.lang3.ArrayUtilsTest)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

3.3
Location : lastIndexOf
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testLastIndexOfShortWithStartIndex(org.apache.commons.lang3.ArrayUtilsTest)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

4.4
Location : lastIndexOf
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testLastIndexOfShortWithStartIndex(org.apache.commons.lang3.ArrayUtilsTest)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

5.5
Location : lastIndexOf
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testLastIndexOfShortWithStartIndex(org.apache.commons.lang3.ArrayUtilsTest)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

6.6
Location : lastIndexOf
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testLastIndexOfShortWithStartIndex(org.apache.commons.lang3.ArrayUtilsTest)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

7.7
Location : lastIndexOf
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testLastIndexOfShortWithStartIndex(org.apache.commons.lang3.ArrayUtilsTest)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

3610

1.1
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3627

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3646

1.1
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3647

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3649

1.1
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3652

1.1
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3653

1.1
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3654

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3657

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3672

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3691

1.1
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3692

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3694

1.1
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3695

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3696

1.1
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3697

1.1
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3699

1.1
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

9.9
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

12.12
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

15.15
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

18.18
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

21.21
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3700

1.1
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3701

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3704

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3718

1.1
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3734

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3752

1.1
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3753

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3755

1.1
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3758

1.1
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3759

1.1
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3760

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3763

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3777

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3795

1.1
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3796

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3798

1.1
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3799

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3800

1.1
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3801

1.1
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3803

1.1
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

9.9
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

12.12
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

15.15
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

18.18
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

21.21
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3804

1.1
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3805

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3808

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3821

1.1
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3837

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3854

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3872

1.1
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3873

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3875

1.1
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3878

1.1
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3879

1.1
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3880

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3883

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3904

1.1
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3905

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3907

1.1
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3910

1.1
Location : indexOf
Killed by : none
Replaced double subtraction with addition → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
Replaced double subtraction with addition → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
Replaced double subtraction with addition → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
Replaced double subtraction with addition → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
Replaced double subtraction with addition → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
Replaced double subtraction with addition → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
Replaced double subtraction with addition → NOT_SCHEDULED

3911

1.1
Location : indexOf
Killed by : none
Replaced double addition with subtraction → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
Replaced double addition with subtraction → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
Replaced double addition with subtraction → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
Replaced double addition with subtraction → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
Replaced double addition with subtraction → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
Replaced double addition with subtraction → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
Replaced double addition with subtraction → NOT_SCHEDULED

3912

1.1
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3913

1.1
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : indexOf
Killed by : none
changed conditional boundary → SURVIVED

15.15
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

17.17
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

18.18
Location : indexOf
Killed by : none
changed conditional boundary → SURVIVED

19.19
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

20.20
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

22.22
Location : indexOf
Killed by : none
changed conditional boundary → SURVIVED

23.23
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

24.24
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

25.25
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

26.26
Location : indexOf
Killed by : none
changed conditional boundary → SURVIVED

27.27
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

28.28
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3914

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3917

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3931

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3948

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3966

1.1
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3967

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3969

1.1
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3970

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3971

1.1
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3972

1.1
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3974

1.1
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

9.9
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

12.12
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

15.15
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

18.18
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

21.21
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3975

1.1
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3976

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3979

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4000

1.1
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4001

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4003

1.1
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4004

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4005

1.1
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4006

1.1
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testLastIndexOfDoubleTolerance(org.apache.commons.lang3.ArrayUtilsTest)
Replaced integer subtraction with addition → KILLED

3.3
Location : lastIndexOf
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testLastIndexOfDoubleTolerance(org.apache.commons.lang3.ArrayUtilsTest)
Replaced integer subtraction with addition → KILLED

4.4
Location : lastIndexOf
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testLastIndexOfDoubleTolerance(org.apache.commons.lang3.ArrayUtilsTest)
Replaced integer subtraction with addition → KILLED

5.5
Location : lastIndexOf
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testLastIndexOfDoubleTolerance(org.apache.commons.lang3.ArrayUtilsTest)
Replaced integer subtraction with addition → KILLED

6.6
Location : lastIndexOf
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testLastIndexOfDoubleTolerance(org.apache.commons.lang3.ArrayUtilsTest)
Replaced integer subtraction with addition → KILLED

7.7
Location : lastIndexOf
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testLastIndexOfDoubleTolerance(org.apache.commons.lang3.ArrayUtilsTest)
Replaced integer subtraction with addition → KILLED

4008

1.1
Location : lastIndexOf
Killed by : none
Replaced double subtraction with addition → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
Replaced double subtraction with addition → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
Replaced double subtraction with addition → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
Replaced double subtraction with addition → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
Replaced double subtraction with addition → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
Replaced double subtraction with addition → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
Replaced double subtraction with addition → NOT_SCHEDULED

4009

1.1
Location : lastIndexOf
Killed by : none
Replaced double addition with subtraction → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
Replaced double addition with subtraction → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
Replaced double addition with subtraction → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
Replaced double addition with subtraction → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
Replaced double addition with subtraction → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
Replaced double addition with subtraction → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
Replaced double addition with subtraction → NOT_SCHEDULED

4010

1.1
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

9.9
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

12.12
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

15.15
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

18.18
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

21.21
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4011

1.1
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

15.15
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

17.17
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

18.18
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

19.19
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

20.20
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

22.22
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

23.23
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

24.24
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

25.25
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

26.26
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

28.28
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4012

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4015

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4028

1.1
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4045

1.1
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4061

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4079

1.1
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4080

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4082

1.1
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4085

1.1
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4086

1.1
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4087

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4090

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4104

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4122

1.1
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4123

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4125

1.1
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4126

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4127

1.1
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4128

1.1
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4130

1.1
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

9.9
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

12.12
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

15.15
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

18.18
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

21.21
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4131

1.1
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4132

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4135

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4148

1.1
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4164

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4183

1.1
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4184

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4186

1.1
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4189

1.1
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : indexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : indexOf
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4190

1.1
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4191

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4194

1.1
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : indexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4209

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4227

1.1
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4228

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4230

1.1
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4231

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4232

1.1
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4233

1.1
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4235

1.1
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

9.9
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

12.12
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

15.15
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

18.18
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : lastIndexOf
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : lastIndexOf
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

21.21
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4236

1.1
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
negated conditional → NOT_SCHEDULED

4237

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4240

1.1
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : lastIndexOf
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4253

1.1
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : contains
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : contains
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4271

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4272

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4273

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4274

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4277

1.1
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4280

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4293

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4294

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4295

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4296

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4299

1.1
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : toPrimitive
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testToPrimitive_char_char(org.apache.commons.lang3.ArrayUtilsTest)
negated conditional → KILLED

10.10
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : toPrimitive
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testToPrimitive_char_char(org.apache.commons.lang3.ArrayUtilsTest)
negated conditional → KILLED

13.13
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : toPrimitive
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testToPrimitive_char_char(org.apache.commons.lang3.ArrayUtilsTest)
negated conditional → KILLED

16.16
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : toPrimitive
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testToPrimitive_char_char(org.apache.commons.lang3.ArrayUtilsTest)
negated conditional → KILLED

19.19
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : toPrimitive
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testToPrimitive_char_char(org.apache.commons.lang3.ArrayUtilsTest)
negated conditional → KILLED

4301

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4303

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4315

1.1
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4316

1.1
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4317

1.1
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4318

1.1
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4321

1.1
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4324

1.1
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4339

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4340

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4341

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4342

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4345

1.1
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testToPrimitive_long(org.apache.commons.lang3.ArrayUtilsTest)
Changed increment from 1 to -1 → KILLED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testToPrimitive_long(org.apache.commons.lang3.ArrayUtilsTest)
Changed increment from 1 to -1 → KILLED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : toPrimitive
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testToPrimitive_long(org.apache.commons.lang3.ArrayUtilsTest)
Changed increment from 1 to -1 → KILLED

9.9
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : toPrimitive
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testToPrimitive_long(org.apache.commons.lang3.ArrayUtilsTest)
Changed increment from 1 to -1 → KILLED

12.12
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : toPrimitive
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testToPrimitive_long(org.apache.commons.lang3.ArrayUtilsTest)
Changed increment from 1 to -1 → KILLED

15.15
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : toPrimitive
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testToPrimitive_long(org.apache.commons.lang3.ArrayUtilsTest)
Changed increment from 1 to -1 → KILLED

18.18
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : toPrimitive
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testToPrimitive_long(org.apache.commons.lang3.ArrayUtilsTest)
Changed increment from 1 to -1 → KILLED

21.21
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4348

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4361

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4362

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4363

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4364

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4367

1.1
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4369

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4371

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4383

1.1
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4384

1.1
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4385

1.1
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4386

1.1
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4389

1.1
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4392

1.1
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4407

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4408

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4409

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4410

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4413

1.1
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4416

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4429

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4430

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4431

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4432

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4435

1.1
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4437

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4439

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4451

1.1
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4452

1.1
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4453

1.1
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4454

1.1
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4457

1.1
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4460

1.1
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4475

1.1
Location : toPrimitive
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testToPrimitive_short(org.apache.commons.lang3.ArrayUtilsTest)
negated conditional → KILLED

2.2
Location : toPrimitive
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testToPrimitive_short(org.apache.commons.lang3.ArrayUtilsTest)
negated conditional → KILLED

3.3
Location : toPrimitive
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testToPrimitive_short(org.apache.commons.lang3.ArrayUtilsTest)
negated conditional → KILLED

4.4
Location : toPrimitive
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testToPrimitive_short(org.apache.commons.lang3.ArrayUtilsTest)
negated conditional → KILLED

5.5
Location : toPrimitive
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testToPrimitive_short(org.apache.commons.lang3.ArrayUtilsTest)
negated conditional → KILLED

6.6
Location : toPrimitive
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testToPrimitive_short(org.apache.commons.lang3.ArrayUtilsTest)
negated conditional → KILLED

7.7
Location : toPrimitive
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testToPrimitive_short(org.apache.commons.lang3.ArrayUtilsTest)
negated conditional → KILLED

4476

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4477

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4478

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4481

1.1
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4484

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4497

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4498

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4499

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4500

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4503

1.1
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4505

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4507

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4519

1.1
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4520

1.1
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4521

1.1
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4522

1.1
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4525

1.1
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4528

1.1
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4543

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4544

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4545

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4546

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4549

1.1
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4552

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4565

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4566

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4567

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4568

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4571

1.1
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4573

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4575

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4587

1.1
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4588

1.1
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4589

1.1
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4590

1.1
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4593

1.1
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4596

1.1
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4611

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4612

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4613

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4614

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4617

1.1
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4620

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4633

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4634

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4635

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4636

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4639

1.1
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4641

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4643

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4655

1.1
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4656

1.1
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4657

1.1
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4658

1.1
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4661

1.1
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4664

1.1
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4679

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4680

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4681

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4682

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4685

1.1
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4688

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4701

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4702

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4703

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4704

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4707

1.1
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4709

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4711

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4723

1.1
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4724

1.1
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4725

1.1
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4726

1.1
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4729

1.1
Location : toObject
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testToObject_float(org.apache.commons.lang3.ArrayUtilsTest)
changed conditional boundary → KILLED

2.2
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toObject
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testToObject_float(org.apache.commons.lang3.ArrayUtilsTest)
changed conditional boundary → KILLED

5.5
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toObject
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testToObject_float(org.apache.commons.lang3.ArrayUtilsTest)
changed conditional boundary → KILLED

8.8
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : toObject
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testToObject_float(org.apache.commons.lang3.ArrayUtilsTest)
changed conditional boundary → KILLED

11.11
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : toObject
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testToObject_float(org.apache.commons.lang3.ArrayUtilsTest)
changed conditional boundary → KILLED

14.14
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : toObject
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testToObject_float(org.apache.commons.lang3.ArrayUtilsTest)
changed conditional boundary → KILLED

17.17
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : toObject
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testToObject_float(org.apache.commons.lang3.ArrayUtilsTest)
changed conditional boundary → KILLED

20.20
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4732

1.1
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4745

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4746

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4750

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4751

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4753

1.1
Location : toPrimitive
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : toPrimitive
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : toPrimitive
Killed by : none
negated conditional → NO_COVERAGE

4.4
Location : toPrimitive
Killed by : none
negated conditional → NO_COVERAGE

5.5
Location : toPrimitive
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : toPrimitive
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : toPrimitive
Killed by : none
negated conditional → NO_COVERAGE

4754

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

4756

1.1
Location : toPrimitive
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : toPrimitive
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : toPrimitive
Killed by : none
negated conditional → NO_COVERAGE

4.4
Location : toPrimitive
Killed by : none
negated conditional → NO_COVERAGE

5.5
Location : toPrimitive
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : toPrimitive
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : toPrimitive
Killed by : none
negated conditional → NO_COVERAGE

4757

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

4759

1.1
Location : toPrimitive
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : toPrimitive
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : toPrimitive
Killed by : none
negated conditional → NO_COVERAGE

4.4
Location : toPrimitive
Killed by : none
negated conditional → NO_COVERAGE

5.5
Location : toPrimitive
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : toPrimitive
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : toPrimitive
Killed by : none
negated conditional → NO_COVERAGE

4760

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

4762

1.1
Location : toPrimitive
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : toPrimitive
Killed by : none
negated conditional → NO_COVERAGE

3.3
Location : toPrimitive
Killed by : none
negated conditional → NO_COVERAGE

4.4
Location : toPrimitive
Killed by : none
negated conditional → NO_COVERAGE

5.5
Location : toPrimitive
Killed by : none
negated conditional → NO_COVERAGE

6.6
Location : toPrimitive
Killed by : none
negated conditional → NO_COVERAGE

7.7
Location : toPrimitive
Killed by : none
negated conditional → NO_COVERAGE

4763

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

4765

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

4780

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4781

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4782

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4783

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4786

1.1
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4789

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4802

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4803

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4804

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4805

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4808

1.1
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : toPrimitive
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : toPrimitive
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testToPrimitive_boolean_boolean(org.apache.commons.lang3.ArrayUtilsTest)
changed conditional boundary → KILLED

17.17
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : toPrimitive
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testToPrimitive_boolean_boolean(org.apache.commons.lang3.ArrayUtilsTest)
changed conditional boundary → KILLED

20.20
Location : toPrimitive
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4810

1.1
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
negated conditional → NOT_SCHEDULED

4812

1.1
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toPrimitive
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toPrimitive to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4824

1.1
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4825

1.1
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4826

1.1
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4827

1.1
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4830

1.1
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : toObject
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : toObject
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4831

1.1
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
negated conditional → NOT_SCHEDULED

4833

1.1
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : toObject
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::toObject to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4845

1.1
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4856

1.1
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4867

1.1
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4878

1.1
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4889

1.1
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4900

1.1
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4911

1.1
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4922

1.1
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4933

1.1
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : isEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : isEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4946

1.1
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4957

1.1
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4968

1.1
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4979

1.1
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4990

1.1
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5001

1.1
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5012

1.1
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5023

1.1
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5034

1.1
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

9.9
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

11.11
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

13.13
Location : isNotEmpty
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : isNotEmpty
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5062

1.1
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5063

1.1
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5064

1.1
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5065

1.1
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5070

1.1
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5071

1.1
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5073

1.1
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5082

1.1
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5088

1.1
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5109

1.1
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5110

1.1
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5111

1.1
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5112

1.1
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5114

1.1
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5115

1.1
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5116

1.1
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5117

1.1
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5138

1.1
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5139

1.1
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5140

1.1
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5141

1.1
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5143

1.1
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5144

1.1
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5145

1.1
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5146

1.1
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5167

1.1
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5168

1.1
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5169

1.1
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5170

1.1
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5172

1.1
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5173

1.1
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5174

1.1
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5175

1.1
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5196

1.1
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5197

1.1
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5198

1.1
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5199

1.1
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5201

1.1
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5202

1.1
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5203

1.1
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5204

1.1
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5225

1.1
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5226

1.1
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5227

1.1
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5228

1.1
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5230

1.1
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5231

1.1
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5232

1.1
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5233

1.1
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5254

1.1
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5255

1.1
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5256

1.1
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5257

1.1
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5259

1.1
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5260

1.1
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5261

1.1
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5262

1.1
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5283

1.1
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5284

1.1
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5285

1.1
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5286

1.1
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5288

1.1
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5289

1.1
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5290

1.1
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5291

1.1
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5312

1.1
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5313

1.1
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5314

1.1
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
negated conditional → NOT_SCHEDULED

5315

1.1
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5317

1.1
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5318

1.1
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5319

1.1
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5320

1.1
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : addAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::addAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5354

1.1
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

5356

1.1
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

5364

1.1
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5365

1.1
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5391

1.1
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5392

1.1
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5418

1.1
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5419

1.1
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5445

1.1
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5446

1.1
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5472

1.1
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5473

1.1
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5499

1.1
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5500

1.1
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5526

1.1
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5527

1.1
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : add
Killed by : org.apache.commons.lang3.ArrayUtilsAddTest.testAddObjectArrayInt(org.apache.commons.lang3.ArrayUtilsAddTest)
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → KILLED

3.3
Location : add
Killed by : org.apache.commons.lang3.ArrayUtilsAddTest.testAddObjectArrayInt(org.apache.commons.lang3.ArrayUtilsAddTest)
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → KILLED

4.4
Location : add
Killed by : org.apache.commons.lang3.ArrayUtilsAddTest.testAddObjectArrayInt(org.apache.commons.lang3.ArrayUtilsAddTest)
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → KILLED

5.5
Location : add
Killed by : org.apache.commons.lang3.ArrayUtilsAddTest.testAddObjectArrayInt(org.apache.commons.lang3.ArrayUtilsAddTest)
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → KILLED

6.6
Location : add
Killed by : org.apache.commons.lang3.ArrayUtilsAddTest.testAddObjectArrayInt(org.apache.commons.lang3.ArrayUtilsAddTest)
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → KILLED

7.7
Location : add
Killed by : org.apache.commons.lang3.ArrayUtilsAddTest.testAddObjectArrayInt(org.apache.commons.lang3.ArrayUtilsAddTest)
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → KILLED

5553

1.1
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5554

1.1
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5580

1.1
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5581

1.1
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5594

1.1
Location : copyArrayGrow1
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : copyArrayGrow1
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : copyArrayGrow1
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : copyArrayGrow1
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : copyArrayGrow1
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : copyArrayGrow1
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : copyArrayGrow1
Killed by : none
negated conditional → NOT_SCHEDULED

5596

1.1
Location : copyArrayGrow1
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : copyArrayGrow1
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : copyArrayGrow1
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : copyArrayGrow1
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : copyArrayGrow1
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : copyArrayGrow1
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

7.7
Location : copyArrayGrow1
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5597

1.1
Location : copyArrayGrow1
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

2.2
Location : copyArrayGrow1
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

3.3
Location : copyArrayGrow1
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

4.4
Location : copyArrayGrow1
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5.5
Location : copyArrayGrow1
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

6.6
Location : copyArrayGrow1
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7.7
Location : copyArrayGrow1
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5598

1.1
Location : copyArrayGrow1
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::copyArrayGrow1 to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : copyArrayGrow1
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::copyArrayGrow1 to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : copyArrayGrow1
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::copyArrayGrow1 to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : copyArrayGrow1
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::copyArrayGrow1 to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : copyArrayGrow1
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::copyArrayGrow1 to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : copyArrayGrow1
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::copyArrayGrow1 to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : copyArrayGrow1
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::copyArrayGrow1 to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5600

1.1
Location : copyArrayGrow1
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::copyArrayGrow1 to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : copyArrayGrow1
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::copyArrayGrow1 to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : copyArrayGrow1
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::copyArrayGrow1 to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : copyArrayGrow1
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::copyArrayGrow1 to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : copyArrayGrow1
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::copyArrayGrow1 to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : copyArrayGrow1
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::copyArrayGrow1 to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : copyArrayGrow1
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::copyArrayGrow1 to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5634

1.1
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

5636

1.1
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

5643

1.1
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5673

1.1
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5705

1.1
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5736

1.1
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5767

1.1
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5798

1.1
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5829

1.1
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5860

1.1
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5891

1.1
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5906

1.1
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

5907

1.1
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

5911

1.1
Location : add
Killed by : none
removed call to java/lang/reflect/Array::set → NOT_SCHEDULED

2.2
Location : add
Killed by : none
removed call to java/lang/reflect/Array::set → NOT_SCHEDULED

3.3
Location : add
Killed by : none
removed call to java/lang/reflect/Array::set → NOT_SCHEDULED

4.4
Location : add
Killed by : none
removed call to java/lang/reflect/Array::set → NOT_SCHEDULED

5.5
Location : add
Killed by : none
removed call to java/lang/reflect/Array::set → NOT_SCHEDULED

6.6
Location : add
Killed by : none
removed call to java/lang/reflect/Array::set → NOT_SCHEDULED

7.7
Location : add
Killed by : none
removed call to java/lang/reflect/Array::set → NOT_SCHEDULED

5912

1.1
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5915

1.1
Location : add
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : add
Killed by : none
changed conditional boundary → NOT_SCHEDULED

3.3
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : add
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : add
Killed by : none
changed conditional boundary → NOT_SCHEDULED

7.7
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : add
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : add
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : add
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : add
Killed by : none
changed conditional boundary → NOT_SCHEDULED

15.15
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

17.17
Location : add
Killed by : none
changed conditional boundary → NOT_SCHEDULED

18.18
Location : add
Killed by : none
changed conditional boundary → NOT_SCHEDULED

19.19
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

20.20
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : add
Killed by : none
changed conditional boundary → NOT_SCHEDULED

22.22
Location : add
Killed by : none
changed conditional boundary → NOT_SCHEDULED

23.23
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

24.24
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

25.25
Location : add
Killed by : none
changed conditional boundary → NOT_SCHEDULED

26.26
Location : add
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

28.28
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

5918

1.1
Location : add
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : add
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : add
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : add
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : add
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : add
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

7.7
Location : add
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5919

1.1
Location : add
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

2.2
Location : add
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

3.3
Location : add
Killed by : org.apache.commons.lang3.ArrayUtilsAddTest.testAddObjectAtIndex(org.apache.commons.lang3.ArrayUtilsAddTest)
removed call to java/lang/System::arraycopy → KILLED

4.4
Location : add
Killed by : org.apache.commons.lang3.ArrayUtilsAddTest.testAddObjectAtIndex(org.apache.commons.lang3.ArrayUtilsAddTest)
removed call to java/lang/System::arraycopy → KILLED

5.5
Location : add
Killed by : org.apache.commons.lang3.ArrayUtilsAddTest.testAddObjectAtIndex(org.apache.commons.lang3.ArrayUtilsAddTest)
removed call to java/lang/System::arraycopy → KILLED

6.6
Location : add
Killed by : org.apache.commons.lang3.ArrayUtilsAddTest.testAddObjectAtIndex(org.apache.commons.lang3.ArrayUtilsAddTest)
removed call to java/lang/System::arraycopy → KILLED

7.7
Location : add
Killed by : org.apache.commons.lang3.ArrayUtilsAddTest.testAddObjectAtIndex(org.apache.commons.lang3.ArrayUtilsAddTest)
removed call to java/lang/System::arraycopy → KILLED

5920

1.1
Location : add
Killed by : none
removed call to java/lang/reflect/Array::set → NOT_SCHEDULED

2.2
Location : add
Killed by : none
removed call to java/lang/reflect/Array::set → NOT_SCHEDULED

3.3
Location : add
Killed by : none
removed call to java/lang/reflect/Array::set → NOT_SCHEDULED

4.4
Location : add
Killed by : none
removed call to java/lang/reflect/Array::set → NOT_SCHEDULED

5.5
Location : add
Killed by : none
removed call to java/lang/reflect/Array::set → NOT_SCHEDULED

6.6
Location : add
Killed by : none
removed call to java/lang/reflect/Array::set → NOT_SCHEDULED

7.7
Location : add
Killed by : none
removed call to java/lang/reflect/Array::set → NOT_SCHEDULED

5921

1.1
Location : add
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : add
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : add
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : add
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : add
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : add
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : add
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : add
Killed by : none
negated conditional → NOT_SCHEDULED

5922

1.1
Location : add
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : add
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

4.4
Location : add
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : add
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7.7
Location : add
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

8.8
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

9.9
Location : add
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

10.10
Location : add
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

11.11
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

12.12
Location : add
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

13.13
Location : add
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

14.14
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

15.15
Location : add
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

16.16
Location : add
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

17.17
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

18.18
Location : add
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

19.19
Location : add
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

20.20
Location : add
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

21.21
Location : add
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5924

1.1
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : add
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::add to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5958

1.1
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5989

1.1
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

5990

1.1
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5992

1.1
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6024

1.1
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6054

1.1
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

6055

1.1
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6057

1.1
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6089

1.1
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6119

1.1
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

6120

1.1
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6122

1.1
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6154

1.1
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6184

1.1
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

6185

1.1
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6187

1.1
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6219

1.1
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6249

1.1
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

6250

1.1
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6252

1.1
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6284

1.1
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6314

1.1
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

6315

1.1
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6317

1.1
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6349

1.1
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6379

1.1
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

6380

1.1
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6382

1.1
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6414

1.1
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6444

1.1
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

6445

1.1
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6447

1.1
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6479

1.1
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6509

1.1
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElement
Killed by : none
negated conditional → NOT_SCHEDULED

6510

1.1
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6512

1.1
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElement
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElement to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6538

1.1
Location : remove
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : remove
Killed by : none
changed conditional boundary → NOT_SCHEDULED

3.3
Location : remove
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : remove
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : remove
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : remove
Killed by : none
changed conditional boundary → NOT_SCHEDULED

7.7
Location : remove
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : remove
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : remove
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : remove
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : remove
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : remove
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : remove
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : remove
Killed by : none
changed conditional boundary → NOT_SCHEDULED

15.15
Location : remove
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : remove
Killed by : none
negated conditional → NOT_SCHEDULED

17.17
Location : remove
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveTest.testRemoveCharArray(org.apache.commons.lang3.ArrayUtilsRemoveTest)
changed conditional boundary → KILLED

18.18
Location : remove
Killed by : none
changed conditional boundary → NOT_SCHEDULED

19.19
Location : remove
Killed by : none
negated conditional → NOT_SCHEDULED

20.20
Location : remove
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : remove
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveTest.testRemoveCharArray(org.apache.commons.lang3.ArrayUtilsRemoveTest)
changed conditional boundary → KILLED

22.22
Location : remove
Killed by : none
changed conditional boundary → NOT_SCHEDULED

23.23
Location : remove
Killed by : none
negated conditional → NOT_SCHEDULED

24.24
Location : remove
Killed by : none
negated conditional → NOT_SCHEDULED

25.25
Location : remove
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveTest.testRemoveCharArray(org.apache.commons.lang3.ArrayUtilsRemoveTest)
changed conditional boundary → KILLED

26.26
Location : remove
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : remove
Killed by : none
negated conditional → NOT_SCHEDULED

28.28
Location : remove
Killed by : none
negated conditional → NOT_SCHEDULED

6542

1.1
Location : remove
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : remove
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : remove
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : remove
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : remove
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : remove
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : remove
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6543

1.1
Location : remove
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

2.2
Location : remove
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

3.3
Location : remove
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

4.4
Location : remove
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5.5
Location : remove
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

6.6
Location : remove
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7.7
Location : remove
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

6544

1.1
Location : remove
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : remove
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : remove
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : remove
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : remove
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : remove
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : remove
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : remove
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

9.9
Location : remove
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : remove
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : remove
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

12.12
Location : remove
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : remove
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : remove
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

15.15
Location : remove
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : remove
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : remove
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

18.18
Location : remove
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : remove
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : remove
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

21.21
Location : remove
Killed by : none
negated conditional → NOT_SCHEDULED

6545

1.1
Location : remove
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : remove
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : remove
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : remove
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5.5
Location : remove
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : remove
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : remove
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

8.8
Location : remove
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

9.9
Location : remove
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

10.10
Location : remove
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

11.11
Location : remove
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

12.12
Location : remove
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

13.13
Location : remove
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

14.14
Location : remove
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

15.15
Location : remove
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

16.16
Location : remove
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

17.17
Location : remove
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

18.18
Location : remove
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

19.19
Location : remove
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

20.20
Location : remove
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

21.21
Location : remove
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

22.22
Location : remove
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

23.23
Location : remove
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

24.24
Location : remove
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

25.25
Location : remove
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

26.26
Location : remove
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

27.27
Location : remove
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

28.28
Location : remove
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

6548

1.1
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : remove
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::remove to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6579

1.1
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6611

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6612

1.1
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6615

1.1
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6617

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6620

1.1
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

6624

1.1
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6627

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6628

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6631

1.1
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

6637

1.1
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6670

1.1
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6701

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6702

1.1
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6705

1.1
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6708

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6711

1.1
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

6715

1.1
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest.testRemoveElementByteArray(org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest)
Changed increment from 1 to -1 → KILLED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : removeElements
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest.testRemoveElementByteArray(org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest)
Changed increment from 1 to -1 → KILLED

9.9
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeElements
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest.testRemoveElementByteArray(org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest)
changed conditional boundary → KILLED

11.11
Location : removeElements
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest.testRemoveElementByteArray(org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest)
Changed increment from 1 to -1 → KILLED

12.12
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeElements
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest.testRemoveElementByteArray(org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest)
changed conditional boundary → KILLED

14.14
Location : removeElements
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest.testRemoveElementByteArray(org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest)
Changed increment from 1 to -1 → KILLED

15.15
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : removeElements
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest.testRemoveElementByteArray(org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest)
changed conditional boundary → KILLED

17.17
Location : removeElements
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest.testRemoveElementByteArray(org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest)
Changed increment from 1 to -1 → KILLED

18.18
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : removeElements
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest.testRemoveElementByteArray(org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest)
changed conditional boundary → KILLED

20.20
Location : removeElements
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest.testRemoveElementByteArray(org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest)
Changed increment from 1 to -1 → KILLED

21.21
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6718

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6719

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6722

1.1
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

6725

1.1
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6758

1.1
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6789

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6790

1.1
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6793

1.1
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6796

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6799

1.1
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

6803

1.1
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6806

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6807

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6810

1.1
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

6813

1.1
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6846

1.1
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6877

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6878

1.1
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6881

1.1
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6884

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6887

1.1
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

6891

1.1
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6894

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6895

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6898

1.1
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

6901

1.1
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6934

1.1
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6965

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6966

1.1
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6969

1.1
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6972

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6975

1.1
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

6979

1.1
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6982

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6983

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6986

1.1
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

6989

1.1
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7022

1.1
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7053

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7054

1.1
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7057

1.1
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7060

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7063

1.1
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

7067

1.1
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : removeElements
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest.testRemoveElementLongArray(org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest)
Changed increment from 1 to -1 → KILLED

9.9
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : removeElements
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest.testRemoveElementLongArray(org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest)
Changed increment from 1 to -1 → KILLED

12.12
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : removeElements
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest.testRemoveElementLongArray(org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest)
Changed increment from 1 to -1 → KILLED

15.15
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : removeElements
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest.testRemoveElementLongArray(org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest)
Changed increment from 1 to -1 → KILLED

18.18
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : removeElements
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest.testRemoveElementLongArray(org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest)
Changed increment from 1 to -1 → KILLED

21.21
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7070

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7071

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7074

1.1
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

7077

1.1
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7110

1.1
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7141

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7142

1.1
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7145

1.1
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7148

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7151

1.1
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

7155

1.1
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7158

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7159

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7162

1.1
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

7165

1.1
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7198

1.1
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7229

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7230

1.1
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7233

1.1
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7236

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7239

1.1
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

7243

1.1
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7246

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7247

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7250

1.1
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

7253

1.1
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7282

1.1
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7313

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

14.14
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7314

1.1
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7317

1.1
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7320

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7323

1.1
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
removed call to org/apache/commons/lang3/mutable/MutableInt::increment → NOT_SCHEDULED

7327

1.1
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : removeElements
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : removeElements
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7330

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7331

1.1
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
negated conditional → NOT_SCHEDULED

7334

1.1
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

4.4
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

5.5
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

6.6
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

7.7
Location : removeElements
Killed by : none
removed call to java/util/BitSet::set → NOT_SCHEDULED

7337

1.1
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeElements
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeElements
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest.testRemoveElementBooleanArray(org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest)
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → KILLED

4.4
Location : removeElements
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest.testRemoveElementBooleanArray(org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest)
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → KILLED

5.5
Location : removeElements
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest.testRemoveElementBooleanArray(org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest)
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → KILLED

6.6
Location : removeElements
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest.testRemoveElementBooleanArray(org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest)
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → KILLED

7.7
Location : removeElements
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest.testRemoveElementBooleanArray(org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest)
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeElements to ( if (x != null) null else throw new RuntimeException ) → KILLED

7352

1.1
Location : removeAll
Killed by : none
removed call to java/util/Arrays::sort → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
removed call to java/util/Arrays::sort → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
removed call to java/util/Arrays::sort → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
removed call to java/util/Arrays::sort → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
removed call to java/util/Arrays::sort → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
removed call to java/util/Arrays::sort → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
removed call to java/util/Arrays::sort → NOT_SCHEDULED

7355

1.1
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

7358

1.1
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : removeAll
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

9.9
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : removeAll
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

12.12
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : removeAll
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

15.15
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : removeAll
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

18.18
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : removeAll
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

21.21
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

7360

1.1
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

8.8
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

15.15
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

17.17
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

18.18
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

19.19
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

20.20
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

22.22
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

23.23
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

24.24
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

25.25
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

26.26
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

27.27
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

28.28
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

7363

1.1
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

7366

1.1
Location : removeAll
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

7372

1.1
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7373

1.1
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

7375

1.1
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7376

1.1
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

8.8
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : removeAll
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

11.11
Location : removeAll
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest.testRemoveAllBooleanArrayRemoveNone(org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest)
Replaced integer subtraction with addition → KILLED

12.12
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : removeAll
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

15.15
Location : removeAll
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest.testRemoveAllBooleanArrayRemoveNone(org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest)
Replaced integer subtraction with addition → KILLED

16.16
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

17.17
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

18.18
Location : removeAll
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

19.19
Location : removeAll
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest.testRemoveAllBooleanArrayRemoveNone(org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest)
Replaced integer subtraction with addition → KILLED

20.20
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

22.22
Location : removeAll
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

23.23
Location : removeAll
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest.testRemoveAllBooleanArrayRemoveNone(org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest)
Replaced integer subtraction with addition → KILLED

24.24
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

25.25
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

26.26
Location : removeAll
Killed by : none
Changed increment from -1 to 1 → NOT_SCHEDULED

27.27
Location : removeAll
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest.testRemoveAllBooleanArrayRemoveNone(org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest)
Replaced integer subtraction with addition → KILLED

28.28
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

7378

1.1
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

9.9
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

12.12
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

15.15
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

18.18
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

21.21
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

7379

1.1
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

8.8
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

9.9
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

10.10
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

11.11
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

12.12
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

13.13
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

14.14
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7380

1.1
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7381

1.1
Location : removeAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

8.8
Location : removeAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

9.9
Location : removeAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

10.10
Location : removeAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

11.11
Location : removeAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

12.12
Location : removeAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

13.13
Location : removeAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

14.14
Location : removeAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7386

1.1
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

7387

1.1
Location : removeAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7390

1.1
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7411

1.1
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7416

1.1
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

7417

1.1
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest.testRemoveElementCharArray(org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest)
Replaced integer subtraction with addition → KILLED

3.3
Location : removeAll
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest.testRemoveElementCharArray(org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest)
Replaced integer subtraction with addition → KILLED

4.4
Location : removeAll
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest.testRemoveElementCharArray(org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest)
Replaced integer subtraction with addition → KILLED

5.5
Location : removeAll
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest.testRemoveElementCharArray(org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest)
Replaced integer subtraction with addition → KILLED

6.6
Location : removeAll
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest.testRemoveElementCharArray(org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest)
Replaced integer subtraction with addition → KILLED

7.7
Location : removeAll
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest.testRemoveElementCharArray(org.apache.commons.lang3.ArrayUtilsRemoveMultipleTest)
Replaced integer subtraction with addition → KILLED

7418

1.1
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

7419

1.1
Location : removeAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7420

1.1
Location : removeAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

7424

1.1
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7425

1.1
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeAll
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : removeAll
Killed by : none
negated conditional → NOT_SCHEDULED

7426

1.1
Location : removeAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
removed call to java/lang/System::arraycopy → NOT_SCHEDULED

7428

1.1
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeAll
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAll to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7441

1.1
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7444

1.1
Location : compare
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testIsSorted(org.apache.commons.lang3.ArrayUtilsTest)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

2.2
Location : compare
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testIsSorted(org.apache.commons.lang3.ArrayUtilsTest)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

3.3
Location : compare
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testIsSorted(org.apache.commons.lang3.ArrayUtilsTest)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

4.4
Location : compare
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testIsSorted(org.apache.commons.lang3.ArrayUtilsTest)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

5.5
Location : compare
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testIsSorted(org.apache.commons.lang3.ArrayUtilsTest)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

6.6
Location : compare
Killed by : org.apache.commons.lang3.ArrayUtilsTest.testIsSorted(org.apache.commons.lang3.ArrayUtilsTest)
replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED

7460

1.1
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7464

1.1
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

15.15
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

18.18
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7465

1.1
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7470

1.1
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7472

1.1
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7473

1.1
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7478

1.1
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7489

1.1
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

15.15
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

18.18
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7490

1.1
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7495

1.1
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7497

1.1
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7498

1.1
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7503

1.1
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7514

1.1
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

15.15
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

18.18
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : isSorted
Killed by : none
changed conditional boundary → SURVIVED

20.20
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7515

1.1
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7520

1.1
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7522

1.1
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7523

1.1
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7528

1.1
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7539

1.1
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

15.15
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

18.18
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7540

1.1
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7545

1.1
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7547

1.1
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7548

1.1
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7553

1.1
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7564

1.1
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

15.15
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

18.18
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7565

1.1
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7570

1.1
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7572

1.1
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7573

1.1
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7578

1.1
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7589

1.1
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

15.15
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

18.18
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7590

1.1
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7595

1.1
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7597

1.1
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7598

1.1
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7603

1.1
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7614

1.1
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

15.15
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

18.18
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7615

1.1
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7620

1.1
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7622

1.1
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7623

1.1
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7628

1.1
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7639

1.1
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

15.15
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

18.18
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7640

1.1
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7645

1.1
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7647

1.1
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : isSorted
Killed by : none
changed conditional boundary → SURVIVED

14.14
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7648

1.1
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7653

1.1
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7665

1.1
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

12.12
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

15.15
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

18.18
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

21.21
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7666

1.1
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7671

1.1
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

9.9
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

11.11
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

12.12
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

15.15
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

17.17
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

18.18
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

20.20
Location : isSorted
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

21.21
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7673

1.1
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

8.8
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

9.9
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

10.10
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

11.11
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

12.12
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : isSorted
Killed by : none
changed conditional boundary → NOT_SCHEDULED

14.14
Location : isSorted
Killed by : none
negated conditional → NOT_SCHEDULED

7674

1.1
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7679

1.1
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

2.2
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

3.3
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

4.4
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

5.5
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

6.6
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7.7
Location : isSorted
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NOT_SCHEDULED

7699

1.1
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7700

1.1
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7703

1.1
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7707

1.1
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

8.8
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

9.9
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

11.11
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

12.12
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

14.14
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

15.15
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

17.17
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

18.18
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

20.20
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

21.21
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7708

1.1
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

7711

1.1
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7731

1.1
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7732

1.1
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7735

1.1
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7739

1.1
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveTest.testRemoveAllCharOccurences(org.apache.commons.lang3.ArrayUtilsRemoveTest)
Replaced integer addition with subtraction → KILLED

3.3
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveTest.testRemoveAllCharOccurences(org.apache.commons.lang3.ArrayUtilsRemoveTest)
Replaced integer addition with subtraction → KILLED

6.6
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

8.8
Location : removeAllOccurences
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveTest.testRemoveAllCharOccurences(org.apache.commons.lang3.ArrayUtilsRemoveTest)
Replaced integer addition with subtraction → KILLED

9.9
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

11.11
Location : removeAllOccurences
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveTest.testRemoveAllCharOccurences(org.apache.commons.lang3.ArrayUtilsRemoveTest)
Replaced integer addition with subtraction → KILLED

12.12
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

14.14
Location : removeAllOccurences
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveTest.testRemoveAllCharOccurences(org.apache.commons.lang3.ArrayUtilsRemoveTest)
Replaced integer addition with subtraction → KILLED

15.15
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

17.17
Location : removeAllOccurences
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveTest.testRemoveAllCharOccurences(org.apache.commons.lang3.ArrayUtilsRemoveTest)
Replaced integer addition with subtraction → KILLED

18.18
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

20.20
Location : removeAllOccurences
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveTest.testRemoveAllCharOccurences(org.apache.commons.lang3.ArrayUtilsRemoveTest)
Replaced integer addition with subtraction → KILLED

21.21
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7740

1.1
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

7743

1.1
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7763

1.1
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7764

1.1
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7767

1.1
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7771

1.1
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

8.8
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

9.9
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

11.11
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

12.12
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

14.14
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

15.15
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

17.17
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

18.18
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

20.20
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

21.21
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7772

1.1
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

7775

1.1
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7795

1.1
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7796

1.1
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7799

1.1
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7803

1.1
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

8.8
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

9.9
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

11.11
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

12.12
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

14.14
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

15.15
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

17.17
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

18.18
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

20.20
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

21.21
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7804

1.1
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

7807

1.1
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7827

1.1
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7828

1.1
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7831

1.1
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7835

1.1
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

8.8
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

9.9
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

11.11
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

12.12
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

14.14
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

15.15
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

17.17
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

18.18
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

20.20
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

21.21
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7836

1.1
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

7839

1.1
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7859

1.1
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7860

1.1
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7863

1.1
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7867

1.1
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

8.8
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

9.9
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

11.11
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

12.12
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

14.14
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

15.15
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

17.17
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

18.18
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

20.20
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

21.21
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7868

1.1
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

7871

1.1
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7891

1.1
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7892

1.1
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7895

1.1
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7899

1.1
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

8.8
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

9.9
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

11.11
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

12.12
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

14.14
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

15.15
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

17.17
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

18.18
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

20.20
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

21.21
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7900

1.1
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

7903

1.1
Location : removeAllOccurences
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveTest.testRemoveAllFloatOccurences(org.apache.commons.lang3.ArrayUtilsRemoveTest)
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → KILLED

2.2
Location : removeAllOccurences
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveTest.testRemoveAllFloatOccurences(org.apache.commons.lang3.ArrayUtilsRemoveTest)
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → KILLED

3.3
Location : removeAllOccurences
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveTest.testRemoveAllFloatOccurences(org.apache.commons.lang3.ArrayUtilsRemoveTest)
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → KILLED

4.4
Location : removeAllOccurences
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveTest.testRemoveAllFloatOccurences(org.apache.commons.lang3.ArrayUtilsRemoveTest)
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → KILLED

5.5
Location : removeAllOccurences
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveTest.testRemoveAllFloatOccurences(org.apache.commons.lang3.ArrayUtilsRemoveTest)
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → KILLED

6.6
Location : removeAllOccurences
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveTest.testRemoveAllFloatOccurences(org.apache.commons.lang3.ArrayUtilsRemoveTest)
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → KILLED

7.7
Location : removeAllOccurences
Killed by : org.apache.commons.lang3.ArrayUtilsRemoveTest.testRemoveAllFloatOccurences(org.apache.commons.lang3.ArrayUtilsRemoveTest)
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → KILLED

7923

1.1
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7924

1.1
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7927

1.1
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7931

1.1
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

8.8
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

9.9
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

11.11
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

12.12
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

14.14
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

15.15
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

17.17
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

18.18
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

20.20
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

21.21
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7932

1.1
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

7935

1.1
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7956

1.1
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7957

1.1
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7960

1.1
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

7964

1.1
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

8.8
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

9.9
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

10.10
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

11.11
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

12.12
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

13.13
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

14.14
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

15.15
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

16.16
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

17.17
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

18.18
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

19.19
Location : removeAllOccurences
Killed by : none
Replaced integer subtraction with addition → NOT_SCHEDULED

20.20
Location : removeAllOccurences
Killed by : none
Replaced integer addition with subtraction → NOT_SCHEDULED

21.21
Location : removeAllOccurences
Killed by : none
negated conditional → NOT_SCHEDULED

7965

1.1
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
Changed increment from 1 to -1 → NOT_SCHEDULED

7968

1.1
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

2.2
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

3.3
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

4.4
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

5.5
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

6.6
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

7.7
Location : removeAllOccurences
Killed by : none
mutated return of Object value for org/apache/commons/lang3/ArrayUtils::removeAllOccurences to ( if (x != null) null else throw new RuntimeException ) → NOT_SCHEDULED

Active mutators

Tests examined


Report generated by PIT 1.1.11-SNAPSHOT